1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-27 11:08:55 +00:00
Files

4 lines
92 B
JavaScript

function foo() { var a=1; var b=2; bar(a, b); }
function bar(c, d) { return c - d; }
foo();