Guest User

Untitled

a guest
May 17th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.20 KB | None | 0 0
  1. text = "Who's working on this project?"
  2.  
  3. words = text.split
  4. foo = 'me!'
  5. words.each do |foo|
  6.   puts foo
  7. end
  8. puts foo
  9.  
  10. timur@timur-tp:~$ ruby ./test.rb
  11. Who's
  12. working
  13. on
  14. this
  15. project?
  16. me!
Advertisement
Add Comment
Please, Sign In to add comment