15 lines
160 B
Plaintext
15 lines
160 B
Plaintext
|
int add (int a int b){
|
||
|
return (a+b);
|
||
|
}
|
||
|
|
||
|
int add2 (int a int b ){
|
||
|
return (a+b);
|
||
|
}
|
||
|
|
||
|
test{
|
||
|
int y = 3;
|
||
|
while (y=1){
|
||
|
const x = 3;
|
||
|
int x = 4;
|
||
|
}
|
||
|
}
|