TheHoTTGame/0Trinitarianism/Quest2.agda
2021-08-16 20:07:25 +01:00

29 lines
494 B
Agda
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module 0Trinitarianism.Quest2 where
open import 0Trinitarianism.Preambles.P2
isEven : Type
isEven n = {!!}
{-
This is a comment block.
Remove this comment block and formulate
'there exists an even natural' here.
-}
_×_ : Type Type Type
A × C = Σ A (λ a C)
div2 : Σ isEven
div2 x = {!!}
private
postulate
A B C : Type
uncurry : (A B C) (A × B C)
uncurry f x = {!!}
curry : (A × B C) (A B C)
curry f a b = {!!}