mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
|
import { getValue, setValue } from "@denotest/esm-basic";
|
||
|
|
||
|
export function sayHello() {
|
||
|
setValue(5);
|
||
|
console.log("Hello", getValue());
|
||
|
}
|