How does ARGV get set in Ruby?
You probably know that Ruby sticks any command-line arguments into a global array called ARGV. But why the heck is it called ARGV? It’s an interesting history lesson that highlights Ruby’s origins in C. http://blog.honeybadger.io/what-does-argv-mean-in-ruby/
Post a comment