8 lines
74 B
Plaintext
8 lines
74 B
Plaintext
int f (int a int b){
|
|
return (a+b);
|
|
}
|
|
|
|
test{
|
|
print call f ((3+4) 3);
|
|
}
|