2013-11-10 18:12:43 +00:00
|
|
|
Variable x : Int
|
|
|
|
|
2013-11-13 00:05:46 +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-11-13 21:58:51 +00:00
|
|
|
typeofx = env:check_type(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
|
2013-11-13 00:05:46 +00:00
|
|
|
**)
|
2013-11-10 18:12:43 +00:00
|
|
|
|
|
|
|
Show Environment 101
|
|
|
|
Check x + y_1 + y_2
|