Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- write( "command?: " )
- sInput = read()
- tArgs = {}
- for word in sInput:gmatch("(%w+)") do
- table.insert(tArgs, word)
- end
- print( "Results:" )
- for i=1,#tArgs do
- print( tArgs[i] )
- end
- print( "End Results.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement