overloading 169 B

12345678910111213
  1. function test(a, b) {
  2. print a + 1;
  3. print b + 2;
  4. }
  5. function test(a, b, c) {
  6. print a + 3;
  7. print b + 4;
  8. print c + 100;
  9. }
  10. test(1, 2);
  11. test(10, 20, 1);