mirror of
https://github.com/denoland/deno.git
synced 2025-02-07 06:54:07 -05:00
10 lines
123 B
JavaScript
10 lines
123 B
JavaScript
![]() |
let value = 0;
|
||
|
|
||
|
export function setValue(newValue) {
|
||
|
value = newValue;
|
||
|
}
|
||
|
|
||
|
export function getValue() {
|
||
|
return value;
|
||
|
}
|