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