Lua——模塊

建立modul.lua 文件ui

eglua

module ={} module.str ="hello world"  local function bar()  print("hello bar ") end  function module.foo()  io.write("hello foo\n")  bar() end  return module


建立module_test.luaspa

require("module") print(module.str) print(module.foo())

執行結果.net

hello world hello foo hello bar 

能夠給加載的模塊一個別名變量3d

local m =require("module") print(m.str) print(m.foo())


本文同步分享在 博客「羊羽」(other)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。code

相關文章
相關標籤/搜索