Files
aoc-2023/lib/common.ex
bluepython508 235deeccb7 Infra
2023-12-01 19:13:00 +00:00

5 lines
134 B
Elixir

defmodule Aoc2023.Common do
def stringify(s) when is_binary(s) do s end
def stringify(n) when is_integer(n) do inspect(n) end
end