Guest User

Untitled

a guest
Mar 17th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. irb(main):001:0> l = []
  2. => []
  3. irb(main):002:0> s = "hello"
  4. => "hello"
  5. irb(main):003:0> l += s
  6. TypeError: can't convert String into Array
  7. from (irb):3:in `+'
  8. from (irb):3
  9. irb(main):004:0>
Add Comment
Please, Sign In to add comment