1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-02 23:43:01 +03:00
juvix/tests/negative/issue1700/SelfApplication.juvix
2023-01-17 13:28:38 +01:00

10 lines
138 B
Plaintext

-- self-application
module SelfApplication;
open import Stdlib.Prelude;
main : IO;
main := printNatLn (λ {x := x x} id (3 + 4));
end;