diff options
| -rw-r--r-- | bruiser/lua-scripts/list.lua | 14 | ||||
| -rw-r--r-- | bruiser/lua-scripts/test4.lua | 4 | 
2 files changed, 18 insertions, 0 deletions
| diff --git a/bruiser/lua-scripts/list.lua b/bruiser/lua-scripts/list.lua new file mode 100644 index 0000000..d23ef04 --- /dev/null +++ b/bruiser/lua-scripts/list.lua @@ -0,0 +1,14 @@ +in_command = io.read() +if in_command == "list funcs" then +  clangreturn = Funcs() +elseif in_command == "list vars" then +  clangreturn = Vars() +elseif in_command == "list structs" then +  clangreturn = Structs() +elseif in_command == "list arrays" then +  clangreturn = Arrayss() +elseif in_command == "list classes" then +  clangreturn = Classes() +elseif in_command == "list unions" then +  clangreturn = Unions() +end diff --git a/bruiser/lua-scripts/test4.lua b/bruiser/lua-scripts/test4.lua new file mode 100644 index 0000000..6d0db5b --- /dev/null +++ b/bruiser/lua-scripts/test4.lua @@ -0,0 +1,4 @@ +--print("yolo") +--bubu() +--Funcs() +Vars() | 
