1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import { printHello2, returnsFoo } from "./subdir2/mod2.ts"; export function returnsHi(): string { return "Hi"; } export function returnsFoo2(): string { return returnsFoo(); } export function printHello3() { printHello2(); } export function throwsError() { throw Error("exception from mod1"); }