2014-01-05 20:05:08 +00:00
|
|
|
import Int.
|
|
|
|
variable x : Int
|
2013-11-10 18:12:43 +00:00
|
|
|
|
2014-01-05 18:32:47 +00:00
|
|
|
(*
|
2013-11-13 21:58:51 +00:00
|
|
|
local N = 100
|
|
|
|
local env = get_environment()
|
2013-11-10 18:12:43 +00:00
|
|
|
-- Create N variables with the same type of x
|
2013-12-22 19:51:38 +00:00
|
|
|
typeofx = env:type_check(Const("x"))
|
2013-11-10 18:12:43 +00:00
|
|
|
for i = 1, N do
|
2013-11-13 21:58:51 +00:00
|
|
|
env:add_var("y_" .. i, typeofx)
|
2013-11-10 18:12:43 +00:00
|
|
|
end
|
2014-01-05 18:32:47 +00:00
|
|
|
*)
|
2013-11-10 18:12:43 +00:00
|
|
|
|
2014-01-05 20:05:08 +00:00
|
|
|
print environment 101
|
|
|
|
check x + y_1 + y_2
|