File size: 149 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
let x = 1;
let y = "hello";
export function a() {
require(x);
}
export function b() {
y = "world";
}
export function c() {
x = y + ".js";
}
|
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
let x = 1;
let y = "hello";
export function a() {
require(x);
}
export function b() {
y = "world";
}
export function c() {
x = y + ".js";
}
|