mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 15:51: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.
15 lines
701 B
Text
15 lines
701 B
Text
procedure Test.1 (Test.5):
|
|
let Test.2 : Builtin(Int(I64)) = 42i64;
|
|
let Test.3 : LambdaSet(LambdaSet { set: [(`#UserApp.1`, [Builtin(Int(I64))])], representation: Struct([Builtin(Int(I64))]) }) = Struct {Test.2};
|
|
ret Test.3;
|
|
|
|
procedure Test.3 (Test.9, #Attr.12):
|
|
let Test.2 : Builtin(Int(I64)) = StructAtIndex 0 #Attr.12;
|
|
ret Test.2;
|
|
|
|
procedure Test.0 ():
|
|
let Test.8 : Struct([]) = Struct {};
|
|
let Test.4 : LambdaSet(LambdaSet { set: [(`#UserApp.1`, [Builtin(Int(I64))])], representation: Struct([Builtin(Int(I64))]) }) = CallByName Test.1 Test.8;
|
|
let Test.7 : Struct([]) = Struct {};
|
|
let Test.6 : Builtin(Int(I64)) = CallByName Test.3 Test.7 Test.4;
|
|
ret Test.6;
|