9 lines
139 B
Plaintext
9 lines
139 B
Plaintext
main: Func = | x: U32, y: U32 | {
|
|
res = add(x, y);
|
|
print(res);
|
|
|
|
if res > 10 {
|
|
print("res is greater than 10");
|
|
}
|
|
}
|