Last active
August 29, 2015 14:24
-
-
Save mfpiccolo/50886d23e092eca6987e to your computer and use it in GitHub Desktop.
String Example
This file contains hidden or 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
'this is a string'.class # => String | |
"this is a string".class # => String | |
%{this is a string}.class # => String | |
string = <<END | |
this is a string | |
END | |
string.class = # => String |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment