You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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)
|