2022-09-19 10:32:21 -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");
|
|
|
|
}
|