mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +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.
4 lines
123 B
Text
4 lines
123 B
Text
procedure Test.0 ():
|
|
let Test.1 : Builtin(Int(I64)) = 5i64;
|
|
let Test.3 : Builtin(Int(I64)) = 3i64;
|
|
ret Test.3;
|