lean2/tests/lua/env4.lua
Leonardo de Moura bf081ed431 refactor(kernel): rename var_decl to constant_assumption
Motivation: it matches the notation used to declare it.
2014-10-02 17:55:34 -07:00

6 lines
232 B
Lua

local env = bare_environment()
env = add_decl(env, mk_constant_assumption("A", Prop))
local c1 = type_check(env, mk_axiom("p", Const("A")))
local c2 = type_check(env, mk_axiom("q", Const("A")))
env = env:add(c1)
env = env:add(c2)