[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Top-level source file name for a package: "?.lua", "?/?.lua", or "?/init.lua"?
- From: Duck <duck@...>
- Date: Mon, 7 Jan 2008 07:31:40 +1100 (EST)
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.