mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-12-18 10:21:39 +03:00
21 lines
336 B
Idris
21 lines
336 B
Idris
import Data.Fin
|
|
|
|
data NNat = NZ | NS NNat
|
|
|
|
zsym : (x : NNat) -> x = NZ -> NZ = x
|
|
zsym NZ Refl = Refl
|
|
zsym (NS _) Refl impossible
|
|
|
|
zsym' : (x : NNat) -> x = NZ -> NZ = x
|
|
zsym' NZ Refl = Refl
|
|
|
|
foo : Nat -> String
|
|
foo 0 = "zero"
|
|
foo 1 = "one"
|
|
foo x = "something else"
|
|
|
|
bar : Fin (S (S (S Z))) -> String
|
|
bar 0 = "a"
|
|
bar 1 = "b"
|
|
bar 2 = "c"
|