From dc709e15490f358637403875066e87ae6407c93a Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 25 Feb 2012 11:59:56 -0500 Subject: [PATCH] file for ex13 --- ex13.rb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ex13.rb 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}"