comparison Options.lua @ 42:72055fc7e115

A lot of work to reign in namespacing (inspiration: WIM)
author John@Doomsday
date Thu, 15 Mar 2012 08:47:41 -0400
parents 21c58930f74e
children 4109683c3172
comparison
equal deleted inserted replaced
41:dc9bfacca238 42:72055fc7e115
1 1 setfenv(1,bsk)
2 bsk.options = { 2 options = {
3 name= 'bsk', 3 name= 'bsk',
4 type = 'group', 4 type = 'group',
5 args = 5 args =
6 { 6 {
7 version = 7 version =
8 { 8 {
9 type = "execute", 9 type = "execute",
10 name = "Version query", 10 name = "Version query",
11 desc = "Check others' versions", 11 desc = "Check others' versions",
12 func = function(self) self:Print("TODO") end 12 func = function(self) bsk:Print("TODO") end
13 } 13 }
14 } 14 }
15 } 15 }