TheHoTTGame/Trinitarianism/Quest1.agda
2021-07-23 13:29:48 +01:00

10 lines
214 B
Agda
Raw 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 Trinitarianism.Quest1 where
open import Cubical.Core.Everything
open import Trinitarianism.Quest0Solutions
isEven : Type u
isEven zero =
isEven (suc zero) =
isEven (suc (suc n)) = isEven n