10 lines
207 B
Ruby
10 lines
207 B
Ruby
|
first, second, third = ARGV
|
||
|
|
||
|
puts "Your first variable is: #{first}"
|
||
|
puts "Your second variable is: #{second}"
|
||
|
puts "Your third variable is: #{third}"
|
||
|
|
||
|
puts "Do a thing"
|
||
|
thing = $stdin.gets.chomp
|
||
|
puts thing
|