arguments 212 B

12345678910111213141516171819202122
  1. a = 2;
  2. b = 3;
  3. function wusi(c, d) {
  4. print c;
  5. print d;
  6. }
  7. function test(c, d) {
  8. print a;
  9. print b;
  10. print c;
  11. print d;
  12. wusi(4, 5 + 6);
  13. }
  14. test(a, b);
  15. print a;
  16. print b;
  17. print c;
  18. print d;