lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]



For a package which is a single file, I like:

name.lua

and for a package which consists of multiple files (or a group of packages), I happen to like:

name/init.lua
name/*.lua

for the same reasons (Don't Repeat Yourself) as the OP.