aboutsummaryrefslogtreecommitdiffstats
path: root/out/test.lua
blob: 8b82bea0718dd573180dec6ae8c62ee2cd104d8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
print("Start of REPL test\n")
--global_type_t = require("global_type_t")

print(type(global_type_t))
for k,v in pairs(global_type_t) do
  if type(v) == "function" then
    print(k, v)
  end
end

--local gt = global_type_t()
local gt = global_type_t:mutability()
local gt = global_type_t:new()
print("End of REPL test\n")