mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
f89b531149
Closes #23950
8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
import { getValue, setValue } from "@denotest/basic";
|
|
import * as test from "@denotest2/basic";
|
|
|
|
console.log(getValue());
|
|
setValue(42);
|
|
console.log(getValue());
|
|
|
|
console.log(test.getValue());
|