Library Coqdoc.details

Definition foo : nat := 3.

Foo bar
Fixpoint idnat (x : nat) : nat :=
  match x with
  | S xS (idnat x)
  | 0 ⇒ 0
  end.