Cosmo/examples/test.cosmo

16 lines
264 B
Plaintext
Raw Permalink Normal View History

2020-12-05 23:58:56 +00:00
// crafts a dummy proto
proto test
func __init(self) end
end
// instance of test
let obj = test()
2023-08-29 21:51:04 +00:00
test.__index = func(self, key)
print("__index called!")
if (key == "lol") then
return 9001
end
end
print(obj["lol"]) // should print 9001?