Ruby/Development/Command line

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск

Read text from the command line, assigns that text to the predefined variable $_

print "Please enter the temperature: "
gets
chomp
puts "The temperature is #{$_}."