10 lines
121 B
Text
10 lines
121 B
Text
|
|
attribute [reducible]
|
|
definition N := nat
|
|
|
|
definition f : N → nat
|
|
| 0 := 1
|
|
| (n+1) := n
|
|
|
|
example : f 0 = 1 :=
|
|
rfl
|