Guest User

Untitled

a guest
Mar 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. 2.2.7 :011 > a = [1,2,3,4]
  2. => [1, 2, 3, 4]
  3. 2.2.7 :012 > a[0...-1].collect do |x|
  4. 2.2.7 :013 > x.to_s
  5. 2.2.7 :014?> end
  6. => ["1", "2", "3"]
  7. 2.2.7 :015 >
Add Comment
Please, Sign In to add comment