Skip to content

Instantly share code, notes, and snippets.

@picatz
Last active July 30, 2017 15:06
Show Gist options
  • Save picatz/1353b072dfdbfeb06050d555cb6d478d to your computer and use it in GitHub Desktop.
Save picatz/1353b072dfdbfeb06050d555cb6d478d to your computer and use it in GitHub Desktop.
ARGV Error
ARGV << "example"
i = ARGV.index("example")
i # is 0
result = i + 1
# expect result to be 1
# but get error
# undefined method '+' for Nil (compile-time type is (Int32 | Nil))
#
# i + 1
# ^
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment