mirror of
https://github.com/denoland/deno.git
synced 2025-01-13 17:39:18 -05:00
8 lines
200 B
JavaScript
8 lines
200 B
JavaScript
import { getValue, setValue } from "npm:@denotest/basic";
|
|
import * as test from "npm:@denotest2/basic";
|
|
|
|
console.log(getValue());
|
|
setValue(42);
|
|
console.log(getValue());
|
|
|
|
console.log(test.getValue());
|