2020-09-27 06:22:32 -04:00
|
|
|
import { printHello3, returnsFoo2, returnsHi } from "./subdir/mod1.ts";
|
2018-08-01 16:30:19 -04:00
|
|
|
|
|
|
|
printHello3();
|
|
|
|
|
|
|
|
if (returnsHi() !== "Hi") {
|
|
|
|
throw Error("Unexpected");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (returnsFoo2() !== "Foo") {
|
|
|
|
throw Error("Unexpected");
|
|
|
|
}
|