mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +09:00
3 lines
92 B
JavaScript
3 lines
92 B
JavaScript
|
|
function foo() { var a=1; var b=2; bar(a, b); }
|
||
|
|
function bar(c, d) { return c - d; }
|
||
|
|
foo();
|