uppercase-string-sigil.txt 267 B

1234567891011121314151617
  1. defmodule Long.Module.Name do
  2. @doc ~S'''
  3. No #{interpolation} of any kind.
  4. \000 \x{ff}
  5. \n #{\x{ff}}
  6. '''
  7. def func(a, b \\ []), do: :ok
  8. @doc ~S"""
  9. No #{interpolation} of any kind.
  10. \000 \x{ff}
  11. \n #{\x{ff}}
  12. """
  13. def func(a, b \\ []), do: :ok
  14. end