[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Seeking advice for good style: more files than submodules
- From: Norman Ramsey <nr@...>
- Date: Wed, 07 Mar 2007 12:36:19 -0500
> ... I would like to have multiple files, each loaded with
> 'require', that all contribute to the same submodule.
Thanks to all who responded to this query. I learned a lot
from the examples.
Here's what I've settled on:
local modname = ...
local modname = string.gsub(modname, '[^%.]+$', 'commands')
module(modname)
this gives me something I can 'require' that will extend the
'commands' submodule.
Thanks again, everyone.
Norman