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-05-13 3:17 UTC