1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-12 04:43:18 +03:00
juvix/tests/positive/FormatPragma.juvix

15 lines
270 B
Plaintext
Raw Normal View History

{-# format: false #-}
module FormatPragma;
open import Stdlib.Prelude;
-- Bam, bam!
-- unformatted module
fun : {A B C D : Type} -> (A -> A) -> (B -> C -> D) -> (A -> B -> C) -> (D -> C -> C) -> A -> B -> C;
fun f g h i a b :=
i
(g b (h (f a) b))
(h a b);