Files

18 lines
267 B
Plaintext
Raw Permalink Normal View History

2021-04-07 19:25:18 -04:00
defmodule Long.Module.Name do
@doc ~S'''
No #{interpolation} of any kind.
\000 \x{ff}
\n #{\x{ff}}
'''
def func(a, b \\ []), do: :ok
@doc ~S"""
No #{interpolation} of any kind.
\000 \x{ff}
\n #{\x{ff}}
"""
def func(a, b \\ []), do: :ok
end