[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Question about using lua as config file
- From: "woolz2002 <wsoftware@...>" <wsoftware@...>
- Date: Tue, 24 Dec 2002 19:15:21 -0000
Thanks very much for the suggestion. I think I see how it can work
now. Thanks again.
Steve Woolsey
--- benjamin sunshine-hill <bsunshin@u...> wrote:
> where are the nodes being stored? If they're in a particular table,
it should be as easy as:
> nodes = {} -- global table for all nodes
> function Node(newNode) do
> -- optionally, check input for correctness here
> -- optionally, process input here
> nodes.insert(newNode)
> end
>
> -- your config file
>
> Ben