Skip to content

Instantly share code, notes, and snippets.

@nattarnoff
Created February 10, 2013 18:12
Show Gist options
  • Save nattarnoff/4750451 to your computer and use it in GitHub Desktop.
Save nattarnoff/4750451 to your computer and use it in GitHub Desktop.
Quick variant on Hello World
lines = []
lines << "I've been alone with you inside my mind"
lines << "And in my dreams I've kissed your lips a thousand times"
lines << "I sometimes see you pass outside my door"
lines << "Hello, is it me you're looking for?"
lines << "I can see it in your eyes"
lines << "I can see it in your smile"
lines << "You're all I've ever wanted, (and) my arms are open wide"
lines << "'Cause you know just what to say"
lines << "And you know just what to do"
lines << "And I want to tell you so much, I love you"
lines << "I long to see the sunlight in your hair"
lines << "And tell you time and time again how much I care"
lines << "Sometimes I feel my heart will overflow"
lines << "Hello, I've just got to let you know"
lines << "'Cause I wonder where you are"
lines << "And I wonder what you do"
lines << "Are you somewhere feeling lonely, or is someone loving you?"
lines << "Tell me how to win your heart"
lines << "For I haven't got a clue"
lines << "But let me start by saying, I love you"
lines << "Hello, is it me you're looking for?"
lines << "'Cause I wonder where you are"
lines << "And I wonder what you do"
lines << "Are you somewhere feeling lonely or is someone loving you?"
lines << "Tell me how to win your heart"
lines << "For I haven't got a clue"
lines << "But let me start by saying I love you"
lines.each do |line|
puts "#{line}"
sleep(1)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment