12345678910111213141516171819202122232425262728293031 |
- local root = {
- {
- action = '=',
- fun = 'equal'
- },
- {
- action = '+',
- fun = 'add'
- },
- {
- action = '-',
- fun = 'subtract'
- },
- {
- action = 'max',
- fun = 'max'
- },
- {
- action = 'min',
- fun = 'min'
- },
- {
- action = 'weightNum',
- fun = 'weightNum'
- },
- {
- action = 'weight',
- fun = 'weight'
- }
- }
- return root
|