57c0006916
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
10 lines
240 B
Text
10 lines
240 B
Text
import Int.
|
|
variable a : Int
|
|
variable n : Nat
|
|
axiom H1 : a + a + a = 10
|
|
axiom H2 : a = n
|
|
theorem T : a + n + a = 10 := subst H1 H2
|
|
set_option pp::coercion true
|
|
set_option pp::notation false
|
|
set_option pp::implicit true
|
|
print environment 1.
|