Packages
card_shark
0.1.0
Library for doing playing card-type things. Shuffling a deck and finding the highest value card in a trick
Current section
Files
Jump to
Current section
Files
lib/card.ex
defmodule CardShark.Card do
@moduledoc "The basic card struct"
defstruct [:suit, :face, :value]
end