Created
December 27, 2017 02:05
-
-
Save chischaschos/7fb8c7bd9082793cb57e638a04d324d5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = "a" | |
puts a | |
a = "b" "b" | |
puts a | |
a = "c""c" | |
puts a | |
a = """" | |
puts a | |
a = """d" | |
puts a | |
a = " | |
e | |
" | |
puts a | |
a = "f"" | |
f | |
" | |
puts a | |
a = """ | |
g | |
" | |
puts a | |
a = "h"" | |
h | |
""h" | |
puts a | |
a = """ | |
i | |
""" | |
puts a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://content.pivotal.io/blog/stupid-ruby-quoting-tricks