summaryrefslogtreecommitdiff
path: root/tests/specs/run/_013_dynamic_import/subdir2/mod2.ts
blob: 9071d0aeb4c6593715d96d9eeb5ced0624bd52f8 (plain)
1
2
3
4
5
6
7
8
9
import { printHello } from "../print_hello.ts";

export function returnsFoo(): string {
  return "Foo";
}

export function printHello2() {
  printHello();
}