2016-07-26 18:06:42 -04:00

10 lines
69 B
JavaScript

export function a() {
alert("a");
}
function b() {
a();
}
b();