deno/cli/tests/bundle/fixture12.out

8 lines
76 B
Plaintext
Raw Normal View History

function a(...d) {
return d.join(" ");
}
function b() {
a();
}
b();