9 lines
116 B
Text
9 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
|