🐕

Elixir 備忘録 WIP

2022/08/22に公開

変数の上書きをすると使ってない変数でwarningが発生する
例:
x = 12
x = "hello"

warning: variable "x" is unused (if the variable is not meant to be used, prefix it with an underscore)
.ex:1

こんな感じで

Discussion