mirror of
https://github.com/helix-editor/helix
synced 2026-07-28 23:33:35 +02:00
11 lines
164 B
Elixir
11 lines
164 B
Elixir
def f(x) do
|
|
helper(x)
|
|
# ^ @function
|
|
x |> Mod.doThing()
|
|
# ^ @function
|
|
"#{String.upcase(x)}"
|
|
# ^ @function
|
|
is_binary(x)
|
|
# ^ @function
|
|
end
|