function2 138 B

123456789101112131415
  1. void wusi() {
  2. print 6;
  3. print 7;
  4. }
  5. void test() {
  6. print 4;
  7. print 5;
  8. wusi();
  9. }
  10. void main() {
  11. test();
  12. test();
  13. }