function2 122 B

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