17 lines
450 B
Plaintext
17 lines
450 B
Plaintext
i32 :: twoparams(int a, i32 b) {
|
|
int c;
|
|
int d;
|
|
int e;
|
|
c = 3;
|
|
d = 4;
|
|
e = 5;
|
|
PrintInteger(a); PrintInteger(b); PrintInteger(c); PrintInteger(d); PrintInteger(e);
|
|
return (0);
|
|
}
|
|
|
|
int eightparams(int a, int b, int c, int d, int e, int f, int g, int h) {
|
|
PrintInteger(a); PrintInteger(b); PrintInteger(c);
|
|
PrintInteger(d); PrintInteger(e); PrintInteger(f);
|
|
PrintInteger(g); PrintInteger(h);
|
|
return (0);
|
|
} |