Can anyone tell me what the problem is with this:
first, second, third = ARGV
puts "The script is called: #{$0}"
puts "Your first variable is: #{first}"
puts "Your second variable is: #{second}"
puts "Your third variable is: #{third}"
It’s returning:
The script is called unpack.rb
Your first variable is:
Your second variable is:
Your third variable is:
I can’t figure out why it won’t print the variables? Would really
appreciate any help. Thanks.