Command Line Argument Flashcards
1
Q
ARGV
A
Any command-line arguments after the program filename are available to your Ruby program in the global array ARGV. For instance, invoking Ruby as % ruby -w ptest “Hello World” a1 1.6180 yields an ARGV array containing [“Hello World”, a1, 1.6180]