※Luaスクリプトを用いたお勉強を兼ねてのテストページです
-- Luaを用いたテストモジュール local mt = {} function mt.__index(a, b) return a + b end return setmetatable({}, mt)