Guest User

Untitled

a guest
Jan 16th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. # Ruby >= 2.2
  2.  
  3. mystring = "Hello World"
  4. mystring&.upcase
  5. => "HELLO WORLD"
  6.  
  7. mystring = nil
  8. mystring&.upcase
  9. => nil
Add Comment
Please, Sign In to add comment