Elixirでコメントアウトです。
参考サイト
Is there any way to comment out line(s) of code in function in Elixir(Stack Overflow)
defmodule MyModule
def foo do
# コメント行
a = "new code"
end
def bar do
"""
コメント行複数
コメント行1
コメント行2
"""
a = "new code"
end
end
参考サイト
Is there any way to comment out line(s) of code in function in Elixir(Stack Overflow)