8 lines
116 B
Text
8 lines
116 B
Text
import data.nat
|
|
open nat
|
|
|
|
theorem tst (x : nat) (H1 : x = 0) : x = 0 :=
|
|
begin
|
|
rewrite *add_zero,
|
|
rewrite H1
|
|
end
|