Idris2/tests/idris2/schemeeval/schemeeval001/expected
2023-09-07 14:57:22 +01:00

6 lines
176 B
Plaintext

Main> [scheme] Main> \x, y => plus x y
[scheme] Main> \x, y => plus y x
[scheme] Main> \x => S (S (plus x x))
[scheme] Main> \x => plus x (S (S x))
[scheme] Main> Bye for now!