Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save denisdemaisbr/ba20927f0e4eb9717efb8250bda82e12 to your computer and use it in GitHub Desktop.
Save denisdemaisbr/ba20927f0e4eb9717efb8250bda82e12 to your computer and use it in GitHub Desktop.
args.lua
--! lua.org
--! get a argument from cli in lua-5.1
if not arg or #arg == 0 then
print('lua args.lua [nome]');
os.exit(1);
end
print( _VERSION )
print( string.format('ola %q', arg[1]) )
--[[
$ lua-5.1.exe args.lua teste
Lua 5.1
ola "teste"
]]--
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment