Guest User

Untitled

a guest
Feb 21st, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. >> class String
  2. >> def initialize
  3. >> puts "hey, there!"
  4. >> end
  5. >> end
  6. => nil
  7. >> String.new
  8. hey, there!
  9. => ""
  10. >> "foo"
  11. => "foo"
Add Comment
Please, Sign In to add comment