chroma/lexers/testdata/elixir.actual

13 lines
225 B
Text
Raw Permalink Normal View History

2025-03-22 20:46:00 +13:00
defmodule Test do
defmodule Formatter do
defstruct [:name]
end
def hello(name \\ "chroma") do
case name do
"chroma" -> IO.puts("Hello, CHROMA!!")
other -> raise "no others please"
end
end
end