mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
7fe656f4b9
And run check_output_test in order.
9 lines
163 B
TypeScript
9 lines
163 B
TypeScript
import { printHello } from "../print_hello.ts";
|
|
|
|
export function returnsFoo(): string {
|
|
return "Foo";
|
|
}
|
|
|
|
export function printHello2(): void {
|
|
printHello();
|
|
}
|