[lua/zh-cn] Mention LUA_PATH (#4564)

This commit is contained in:
dingyanhe 2024-05-27 01:18:29 +08:00 committed by GitHub
parent 3121a72981
commit 693d4415c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -361,6 +361,7 @@ return M
-- 另一个文件可以使用mod.lua的功能
local mod = require('mod') -- 运行文件mod.lua.
-- 注意require 需要配合 LUA_PATH 一起使用 例如export LUA_PATH="$HOME/workspace/projectName/?.lua;;"
-- require是包含模块的标准做法。
-- require等价于: (针对没有被缓存的情况;参见后面的内容)