mirror of
https://github.com/anoma/juvix.git
synced 2024-12-02 23:43:01 +03:00
10 lines
138 B
Plaintext
10 lines
138 B
Plaintext
-- self-application
|
|
module SelfApplication;
|
|
|
|
open import Stdlib.Prelude;
|
|
|
|
main : IO;
|
|
main := printNatLn (λ {x := x x} id (3 + 4));
|
|
|
|
end;
|