Guest User

Untitled

a guest
Oct 17th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. 2.4.1 :001 > words = []
  2. => []
  3. 2.4.1 :002 > word||=""
  4. => ""
  5. 2.4.1 :003 > words.push(word)
  6. => [""]
  7.  
  8. 2.4.1 :001 > words = []
  9. => []
  10. 2.4.1 :002 > word||=""
  11. => ""
  12. 2.4.1 :003 > word = gets.chomp
  13.  
  14. => ""
  15. 2.4.1 :004 > words.push(word)
  16. => [""]
  17.  
  18. 2.4.1 :001 > words = []
  19. => []
  20. 2.4.1 :002 > word||=""
  21. => true
  22. 2.4.1 :003 > words.push(word) until(word=gets.chomp)==""
  23.  
  24. => nil
  25. 2.4.1 :004 > words
  26. => []
  27.  
  28. puts "Type in a word or type enter on an empty line to exit"
  29. words = []
  30. (word||="")
  31. words.push(word) until(word=gets.chomp)==""
  32. p words.sort
Add Comment
Please, Sign In to add comment