123456789101112131415161718192021222324252627282930 |
- void wusi(int c, int d) {
- print c;
- print d;
- }
- void test(int a, int b) {
- print a;
- print b;
- wusi(a, b);
- }
- void test(float f) {
- print f;
- }
- void test(bool b) {
- print b;
- }
- void main() {
- int a = 2;
- int b = 3;
- test(a, b);
- print a;
- print b;
- test(5.5);
- test(true);
- }
|