11 lines
152 B
Text
11 lines
152 B
Text
set_option new_elaborator true
|
|
|
|
attribute [reducible]
|
|
definition N := nat
|
|
|
|
definition f : N → nat
|
|
| 0 := 1
|
|
| (n+1) := n
|
|
|
|
example : f 0 = 1 :=
|
|
rfl
|