> > I have this statement: > > print x > > what would be x to have in output: > > Good bye "Ruby" Tuesday! > > http://www.eng.dmu.ac.uk/~hgs/ruby/ruby-man-1.4/syntax.html#string Indeed, good text to read. This time you might want to write print 'Good buy "Ruby" Tuesday!' Or maybe you have to construct the string from parts require 'date2' the_name_of_the_language = "Ruby" x = %Q|Welcome "#{the_name_of_the_language}" at | + Date::DAYNAMES[Date.today.wday] + "!" puts x - Aleksi