str_lit.parsed 261 B

12345678910111213141516171819202122232425
  1. Puts Cat(
  2. Str("foo")
  3. Str("foo")
  4. )
  5. Puts Cat(
  6. Str("foo bar baz")
  7. Str("foo bar baz")
  8. )
  9. Puts Cat(
  10. Str("won't you")
  11. Str("quoth the raven \"nevermore\"")
  12. )
  13. Puts Cat(
  14. Str("this\nthat")
  15. Str("one\ntwo")
  16. )
  17. Puts Cat(
  18. Str("\n\t\r")
  19. Str("\n\t\r")
  20. )