Skip to content

Instantly share code, notes, and snippets.

@jonasmaturana
Created September 12, 2012 11:27
Show Gist options
  • Save jonasmaturana/3706055 to your computer and use it in GitHub Desktop.
Save jonasmaturana/3706055 to your computer and use it in GitHub Desktop.
if ARGV[0].nil?
def argument(_)
raise "No arguments provided"
end
else
def argument(index)
ARGV[index]
end
end
puts argument(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment