9 lines
114 B
Plaintext
9 lines
114 B
Plaintext
|
int add (int a int b){
|
||
|
return (a+b);
|
||
|
}
|
||
|
|
||
|
test{
|
||
|
const x = 3;
|
||
|
rat z = [4/2];
|
||
|
int r = call z ((x+1) num z);
|
||
|
}
|