14 lines
208 B
Text
14 lines
208 B
Text
func: test(void: i) = {
|
|
number: x = 10
|
|
return x
|
|
}
|
|
func: print(number: n, string: endl) = {
|
|
stdout: out = n
|
|
stdout: outln = endl
|
|
}
|
|
string: end = {
|
|
|
|
}
|
|
void: j = void
|
|
number: y = test(j)
|
|
print(y, end)
|