test(frontends/lean): example mixing Lean and Lua
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
1bf6051866
commit
3dea7ae0d6
2 changed files with 50 additions and 0 deletions
38
tests/lean/lua9.lean
Normal file
38
tests/lean/lua9.lean
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
|
||||||
|
Variable x : Bool
|
||||||
|
|
||||||
|
(**
|
||||||
|
local env = get_environment()
|
||||||
|
local Int = Const("Int")
|
||||||
|
local plus = Const(name("Int", "add"))
|
||||||
|
local x1, x2 = Consts("x1, x2")
|
||||||
|
print(env:check_type(Int))
|
||||||
|
print(env:check_type(plus))
|
||||||
|
env:add_var("x1", Int)
|
||||||
|
env:add_var("x2", Int)
|
||||||
|
print(plus(x1, x2))
|
||||||
|
print(env:check_type(plus(x1)))
|
||||||
|
|
||||||
|
function sum(...)
|
||||||
|
local args = {...}
|
||||||
|
if #args == 0 then
|
||||||
|
error("sum must have at least one argument")
|
||||||
|
else
|
||||||
|
local r = args[1]
|
||||||
|
for i = 2, #args do
|
||||||
|
r = plus(r, args[i])
|
||||||
|
end
|
||||||
|
return r
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local s = sum(x1, x1, x1, x2, x2)
|
||||||
|
print(s)
|
||||||
|
print(env:check_type(s))
|
||||||
|
env:add_definition("sum1", s)
|
||||||
|
**)
|
||||||
|
|
||||||
|
Show Environment 1
|
||||||
|
Eval sum1
|
||||||
|
Variable y : Bool
|
||||||
|
|
12
tests/lean/lua9.lean.expected.out
Normal file
12
tests/lean/lua9.lean.expected.out
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
Set: pp::colors
|
||||||
|
Set: pp::unicode
|
||||||
|
Assumed: x
|
||||||
|
Type
|
||||||
|
ℤ → ℤ → ℤ
|
||||||
|
x1 + x2
|
||||||
|
ℤ → ℤ
|
||||||
|
x1 + x1 + x1 + x2 + x2
|
||||||
|
ℤ
|
||||||
|
Definition sum1 : ℤ := x1 + x1 + x1 + x2 + x2
|
||||||
|
x1 + x1 + x1 + x2 + x2
|
||||||
|
Assumed: y
|
Loading…
Reference in a new issue