Bend/tests/snapshots/cli__compile_strict_loop.bend.snap
2024-05-27 15:09:23 -03:00

20 lines
368 B
Plaintext

---
source: tests/golden_tests.rs
input_file: tests/golden_tests/cli/compile_strict_loop.bend
---
@A = (((?((0 (* (* (a b)))) c) c) d) d)
& @A ~ (a b)
@List/Cons = (a (b ((@List/Cons/tag (a (b c))) c)))
@List/Cons/tag = 1
@List/Nil = ((@List/Nil/tag a) a)
@List/Nil/tag = 0
@main = c
& @A ~ (b c)
& @List/Cons ~ (4 (a b))
& @List/Cons ~ (4 (@List/Nil a))