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