2018-01-09 15:36:42 +01:00

13 lines
95 B
JavaScript

export function a() {
alert("a");
c++;
}
export var c = 5;
function b() {
a();
}
b();