1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-14 03:23:17 -05:00
denoland-deno/tests/specs/info/json_file/json_output/main.ts

12 lines
205 B
TypeScript
Raw Normal View History

2024-09-16 13:08:00 -04:00
import { printHello3, returnsFoo2, returnsHi } from "../mod1.ts";
printHello3();
if (returnsHi() !== "Hi") {
throw Error("Unexpected");
}
if (returnsFoo2() !== "Foo") {
throw Error("Unexpected");
}