Created
June 3, 2014 18:39
-
-
Save lukaszx0/f3900b1d3f503b8989a9 to your computer and use it in GitHub Desktop.
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
irb(main):001:0> s = 92.chr | |
=> "\\" | |
irb(main):002:0> s.size | |
=> 1 | |
irb(main):003:0> puts s | |
\ | |
=> nil | |
irb(main):004:0> s2 = s + s | |
=> "\\\\" | |
irb(main):005:0> s2.size | |
=> 2 | |
irb(main):006:0> puts s2 | |
\\ | |
=> nil |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment