Join Nostr
2025-02-03 16:21:51 UTC
in reply to

azul on Nostr: yes data MyList : Nat -> Type -> Type where Nil : MyList n x (::) : x -> MyList n x ...

yes

data MyList : Nat -> Type -> Type where
Nil : MyList n x
(::) : x -> MyList n x -> MyList (S n) x