mirror of
https://github.com/denoland/deno.git
synced 2024-12-18 21:35:31 -05:00
10 lines
193 B
TypeScript
10 lines
193 B
TypeScript
|
import * as a from "@denotest/a";
|
||
|
import * as b from "@denotest/b";
|
||
|
import * as c from "@denotest/c";
|
||
|
import * as d from "@denotest/d";
|
||
|
|
||
|
a.sayHello();
|
||
|
b.sayHello();
|
||
|
c.sayHello();
|
||
|
d.sayHello();
|