string_vars.out 336 B

123456789101112131415161718192021
  1. # ANCHOR: string_variables
  2. t1 t2
  3. # ANCHOR_END: string_variables
  4. # ANCHOR: string_slicing
  5. Hello
  6. World
  7. llo, Wo
  8. # ANCHOR_END: string_slicing
  9. # ANCHOR: string_concatenation
  10. world
  11. world!
  12. Hello, world!
  13. # ANCHOR_END: string_concatenation
  14. # ANCHOR: string_operations
  15. Doctor
  16. order
  17. Doctor's
  18. orders
  19. Doctor's orders
  20. # ANCHOR_END: string_operations