deno/testdata/005_more_imports.ts
2018-05-18 12:20:59 -04:00

11 lines
211 B
TypeScript

import { returnsHi, returnsFoo2, printHello3 } from "./subdir/mod1.ts";
printHello3();
if (returnsHi() !== "Hi") {
throw Error("Unexpected");
}
if (returnsFoo2() !== "Foo") {
throw Error("Unexpected");
}