LibJS: Add test for function with arguments

This commit is contained in:
howar6hill 2020-03-12 19:43:22 +08:00 committed by Andreas Kling
parent f405cb6a77
commit 9f3f0d9983
Notes: sideshowbarker 2024-07-19 17:36:32 +09:00

View file

@ -0,0 +1,4 @@
function foo(a, b) {
return a + b;
}
foo(1, 2 + 3);