15 lines
194 B
Plaintext
15 lines
194 B
Plaintext
|
int :: Testings() {
|
||
|
return (40);
|
||
|
}
|
||
|
|
||
|
void :: main() {
|
||
|
int Result;
|
||
|
|
||
|
PrintInteger(10);
|
||
|
|
||
|
Result = Testings(10);
|
||
|
|
||
|
PrintInteger(Result);
|
||
|
|
||
|
PrintInteger(Testings(10) + 10);
|
||
|
}
|