module Juvix.Builtin.V1.List; import Juvix.Builtin.V1.Fixity open; syntax operator :: cons; --- Inductive list. builtin list type List (a : Type) := | --- The empty list nil | --- An element followed by a list :: a (List a);Last modified on 2024-07-11 16:35 UTC