mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00

Figuring out what this module was doing, and why, took me a bit less than half an hour. We should document what's happening for others in the future so they don't need to follow up on Zulip necessarily.
9 lines
283 B
Text
9 lines
283 B
Text
procedure Test.0 ():
|
|
let Test.2 : Builtin(Int(I64)) = 0i64;
|
|
let Test.5 : Builtin(Int(I64)) = 1i64;
|
|
let Test.6 : Builtin(Bool) = lowlevel Eq Test.5 Test.2;
|
|
if Test.6 then
|
|
let Test.3 : Builtin(Int(I64)) = 12i64;
|
|
ret Test.3;
|
|
else
|
|
ret Test.2;
|