forward 121 B

1234567891011121314
  1. test();
  2. test(1);
  3. function test() {
  4. print 4;
  5. print 5;
  6. }
  7. function test(a) {
  8. print a;
  9. print 6;
  10. }
  11. test();