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