Skip to content

Instantly share code, notes, and snippets.

@cfierbin
Created February 27, 2016 13:37
Show Gist options
  • Save cfierbin/f0b071f49fe976478400 to your computer and use it in GitHub Desktop.
Save cfierbin/f0b071f49fe976478400 to your computer and use it in GitHub Desktop.
package enums;
enum CardTypes {
CLUBS, // ♣
DIAMONDS,//♦
HEARTS, //♥
SPADES // ♠
}
public class playingCards {
public static void main(String args[]){
CardTypes myCard = CardTypes.CLUBS;
System.out.println("Your card is " + CardTypes.CLUBS);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment