14 lines
185 B
Text
14 lines
185 B
Text
|
|
||
|
(*
|
||
|
print("testing...")
|
||
|
local env = get_env()
|
||
|
env = add_decl(env, mk_var_decl("x", Bool))
|
||
|
assert(env:find("x"))
|
||
|
set_env(env)
|
||
|
*)
|
||
|
|
||
|
(*
|
||
|
local env = get_env()
|
||
|
print(env:find("x"):type())
|
||
|
*)
|