arguments 320 B

123456789101112131415161718192021222324252627282930
  1. void wusi(int c, int d) {
  2. print c;
  3. print d;
  4. }
  5. void test(int a, int b) {
  6. print a;
  7. print b;
  8. wusi(a, b);
  9. }
  10. void test(float f) {
  11. print f;
  12. }
  13. void test(bool b) {
  14. print b;
  15. }
  16. void main() {
  17. int a = 2;
  18. int b = 3;
  19. test(a, b);
  20. print a;
  21. print b;
  22. test(5.5);
  23. test(true);
  24. }