lean2/tests/lean/run/ind0.lean
Leonardo de Moura bdab979e09 feat(frontends/lean): add inductive_cmd
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-06-18 16:00:59 -07:00

6 lines
No EOL
86 B
Text

inductive nat : Type :=
| zero : nat
| succ : nat → nat
check nat
check nat_rec.{1}