Discard patterns
If a variable is assigned but not used then Gleam will emit a warning.
変数が割り当てられているが使用されていない場合、Gleam は警告を発します。
If a variable is intended not to be use then the name can be prefixed with an underscore, silencing the warning.
もし変数が使用されないことを意図しているのであれば、変数名の前にアンダースコアを付けることで警告を抑制することができます。
Try changing the variable name to score
to see the warning.
警告を確認するために変数名を score
に変更してみてください。