9 lines
84 B
Plaintext
9 lines
84 B
Plaintext
import io;
|
|
|
|
var a: int = 42;
|
|
|
|
fun main(): int {
|
|
io::println(a);
|
|
return 0;
|
|
}
|