a23118d357
This addresses the first part of issue #461 We still need support for tactic definitions
5 lines
144 B
Text
5 lines
144 B
Text
import data.nat
|
|
open nat
|
|
|
|
example (a b c : nat) (h₁ : a + 0 = b) (h₂ : b = c) : a = c :=
|
|
by esimp at h₁; rewrite h₂ at h₁; exact h₁
|