ARGV

There is a magic array named ARGV.

It contains the command line arguments to the program.

If the user types:

ruby hello.rb Alice Bob

then ARGV contains:

["Alice", "Bob"]
[menu]

1/6