11 lines
134 B
Plaintext
11 lines
134 B
Plaintext
begin
|
|
int main() is
|
|
int a = 5 ;
|
|
string b = "Hello" ;
|
|
return a + b
|
|
end
|
|
|
|
int result = call main() ;
|
|
exit result
|
|
end
|