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.
11 lines
378 B
Text
11 lines
378 B
Text
procedure Test.1 (Test.2, Test.3):
|
|
inc Test.2;
|
|
ret Test.2;
|
|
|
|
procedure Test.0 ():
|
|
let Test.5 : Builtin(List(Builtin(Int(I64)))) = Array [1i64, 2i64, 3i64];
|
|
let Test.6 : Builtin(List(Builtin(Int(I64)))) = Array [3i64, 2i64, 1i64];
|
|
let Test.4 : Builtin(List(Builtin(Int(I64)))) = CallByName Test.1 Test.5 Test.6;
|
|
dec Test.6;
|
|
dec Test.5;
|
|
ret Test.4;
|