10 lines
89 B
Text
10 lines
89 B
Text
|
|
|
|
abbrev N := Nat
|
|
|
|
def f : N → Nat
|
|
| 0 => 1
|
|
| n+1 => n
|
|
|
|
theorem ex1 : f 0 = 1 :=
|
|
rfl
|