8 lines
90 B
Plaintext
8 lines
90 B
Plaintext
test = Func(): Int {
|
|
x: Int = 3;
|
|
return x + 2;
|
|
}
|
|
|
|
main = Func(): Int {
|
|
return test();
|
|
} |