Skip to content

Instantly share code, notes, and snippets.

@lukaszx0
Created June 3, 2014 18:39
Show Gist options
  • Save lukaszx0/f3900b1d3f503b8989a9 to your computer and use it in GitHub Desktop.
Save lukaszx0/f3900b1d3f503b8989a9 to your computer and use it in GitHub Desktop.
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