From: Jesper Bukkehave Date: 2013-02-08T02:54:05+09:00 Subject: Re: Why the speed? > I would rather recommend to get acquainted with the command prompt. > > stomar I am already working on it :) this is fun. Fist program finished, it´s not perfect but I am learning: print "What's your first name?" first_name = gets.chomp first_name.capitalize! puts "So your name is #{first_name} eh :)" print "What's your last name?" last_name = gets.chomp last_name.capitalize! puts "Really, interesting!" print "What city are you from?" city = gets.chomp city.capitalize! puts "I hear that it is very lovely during the summer." print "What state or province are you from?" state = gets.chomp state.upcase! puts "I did not know that" puts "So your name is #{first_name} #{last_name} and you're from a city called #{city}, #{state}!" gets Feel free to edit and cut into little pieces. -- Posted via http://www.ruby-forum.com/.