Add tests/003_relative_import.ts

This commit is contained in:
Ryan Dahl 2018-07-26 14:12:38 -04:00
parent 5d146ed742
commit 57c52a83a0
3 changed files with 7 additions and 0 deletions

View file

@ -0,0 +1,3 @@
import { printHello } from "./subdir/print_hello.ts";
printHello();

View file

@ -0,0 +1 @@
Hello

View file

@ -0,0 +1,3 @@
export function printHello(): void {
console.log("Hello");
}