Created
July 6, 2020 22:18
-
-
Save jelaniwoods/428096e2f63005131983a90ecb93a62a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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