roc/compiler/test_mono/generated/list_append_closure.txt
ayazhafiz e655ab7d3b Module comments for reset-reuse
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.
2022-01-13 16:33:23 -05:00

13 lines
503 B
Text

procedure List.5 (#Attr.2, #Attr.3):
let Test.7 : Builtin(List(Builtin(Int(I64)))) = lowlevel ListAppend #Attr.2 #Attr.3;
ret Test.7;
procedure Test.1 (Test.2):
let Test.6 : Builtin(Int(I64)) = 42i64;
let Test.5 : Builtin(List(Builtin(Int(I64)))) = CallByName List.5 Test.2 Test.6;
ret Test.5;
procedure Test.0 ():
let Test.4 : Builtin(List(Builtin(Int(I64)))) = Array [1i64, 2i64];
let Test.3 : Builtin(List(Builtin(Int(I64)))) = CallByName Test.1 Test.4;
ret Test.3;