13 lines
95 B
JavaScript

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