7 lines
75 B
Plaintext
7 lines
75 B
Plaintext
test = Func(): Int {
|
|
return 123;
|
|
}
|
|
|
|
main = Func(): Int {
|
|
return test();
|
|
} |