mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
c32d692a8f
``` deno install --entrypoint one.ts two.ts ``` effectively equivalent to `deno cache`
4 lines
101 B
TypeScript
4 lines
101 B
TypeScript
import { getValue, setValue } from "npm:@denotest/esm-basic";
|
|
|
|
setValue(5);
|
|
console.log(getValue());
|