Skip to content

Instantly share code, notes, and snippets.

@jelaniwoods
Created July 6, 2020 22:18
Show Gist options
  • Save jelaniwoods/428096e2f63005131983a90ecb93a62a to your computer and use it in GitHub Desktop.
Save jelaniwoods/428096e2f63005131983a90ecb93a62a to your computer and use it in GitHub Desktop.
p "first argument " + ARGV[0]
p "second argument " + ARGV[1]
remaining = ""
for argument in ARGV do
if argument != ARGV[0] && argument != ARGV[1]
remaining = remaining + argument
end
end
p remaining
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment