私はこの機能を持っています:
function Bootstrap: test()
-- CODE HERE
end
この関数をその名前から呼び出します。
この例は機能します:
function callFunc()
c = "Bootstrap"
_G[c].test()
end
私はこのようなことをする必要があります:
function callFunc()
c = "Bootstrap"
f = "test"
_G[name].[f]() -- Bootstrap.test()
end
しかし、エラーがあります:
'<name>' expected near '['
私は何をすべきですか?ありがとうございました。