lib/islands/tally/point.ex
defmodule Islands.Tally.Point do
alias Islands.Coord
@spec format(Coord.row(), Coord.col()) :: String.t()
def format(row, col), do: "(#{row}, #{col})"
end
defmodule Islands.Tally.Point do
alias Islands.Coord
@spec format(Coord.row(), Coord.col()) :: String.t()
def format(row, col), do: "(#{row}, #{col})"
end