mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00
8 lines
185 B
Text
8 lines
185 B
Text
procedure Test.0 ():
|
|
let Test.3 : Int1 = true;
|
|
if Test.3 then
|
|
let Test.4 : I64 = 1i64;
|
|
ret Test.4;
|
|
else
|
|
let Test.2 : I64 = 2i64;
|
|
ret Test.2;
|