1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-12 14:28:08 +03:00
juvix/tests/Rust/Compilation/positive/test005.juvix

20 lines
349 B
Plaintext
Raw Normal View History

-- Higher-order functions
module test005;
import Stdlib.Prelude open;
S {A B C} (x : A → B → C) (y : A → B) (z : A) : C :=
x z (y z);
K {A B} (x : A) (_ : B) : A := x;
I {A} : A → A := S K (K {_} {Bool});
main : Nat :=
I 1
+ I I 1
+ I (I 1)
+ I I I 1
+ I (I I) I (I I I) 1
+ I I I (I I I (I I)) I (I I) I I I 1;