diff --git a/ex13.rb b/ex13.rb new file mode 100644 index 0000000..49fe1d1 --- /dev/null +++ b/ex13.rb @@ -0,0 +1,6 @@ +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}"