Files
2025-12-22 16:45:48 +01:00

6 lines
91 B
Go

package main
type Card struct {
Suit string // H, D, C, S
Value int // 2-14 (A=14)
}