summaryrefslogtreecommitdiff
path: root/tests/specs/info/json_file/json_output/main.ts
blob: d9029af8afb090a10800628c16bcbd1cd58a8ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { printHello3, returnsFoo2, returnsHi } from "../mod1.ts";

printHello3();

if (returnsHi() !== "Hi") {
  throw Error("Unexpected");
}

if (returnsFoo2() !== "Foo") {
  throw Error("Unexpected");
}