exercism/elixir/dancing-dots/lib/dancing_dots/dot.ex

5 lines
100 B
Elixir
Raw Normal View History

2024-03-08 08:36:14 +00:00
defmodule DancingDots.Dot do
defstruct [:x, :y, :radius, :opacity]
@type t :: %__MODULE__{}
end