View Single Post
Originally Posted by HoboJoey View Post
test = run_cmd("list")

why that doesnt work?

Well you should be going:
function test()
   run_cmd("list")
end
test()
or simply:
run_cmd("list")
:D