CoRN.stdlib_omissions.N

Require Import List.

Fixpoint enum (n: nat): list nat :=
  match n with
  | Onil
  | S n'n' :: enum n'
  end.