module Nat; builtin nat inductive Nat { zero : Nat; suc : Nat → Nat; }; end;