annotate 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
rev   line source
John@42 1 setfenv(1,bsk)
John@42 2 options = {
John@1 3 name= 'bsk',
John@1 4 type = 'group',
John@1 5 args =
John@1 6 {
John@1 7 version =
John@1 8 {
John@1 9 type = "execute",
John@1 10 name = "Version query",
John@1 11 desc = "Check others' versions",
John@42 12 func = function(self) bsk:Print("TODO") end
John@1 13 }
John@1 14 }
John@1 15 }