/**
 * Copyright (C) 2022 by Martin Robillard. See https://codesample.info/about.html
 */
package e2.chapter4;

/**
 * Represents the suit of a playing card.
 */
public enum Suit { 
	CLUBS, DIAMONDS, SPADES, HEARTS;
}