mirror of
https://github.com/helix-editor/helix
synced 2026-08-05 02:33:01 +02:00
11 lines
177 B
Elixir
11 lines
177 B
Elixir
defmodule App do
|
|
# ^ @namespace
|
|
def greet(name) do
|
|
# ^ @function
|
|
s = :ok
|
|
# ^ @string.special.symbol
|
|
re = ~r/foo/
|
|
# ^ @string.regexp
|
|
end
|
|
end
|