1 2 3 4 5 6 7 8 9
| module Foo
function __init__() end
end
|
是否曾經疑惑過寫在 module 中的程式碼會在何時被載入呢?
事實上,解答如下囉!
1 2 3 4 5 6 7 8 9
| module Foo
println("code here will be printed when you build this module")
function __init__() println("code here will be printed when you using this module") end
end
|