forward 177 B

12345678910111213141516171819
  1. void test();
  2. void test(int a);
  3. void main() {
  4. test();
  5. test(1);
  6. test();
  7. }
  8. void test() {
  9. print 4;
  10. print 5;
  11. }
  12. void test(int a) {
  13. print a;
  14. print 6;
  15. }