OnJava8-Examples/housekeeping/SimpleEnumUse.java
Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

12 lines
254 B
Java

//: housekeeping/SimpleEnumUse.java
// ©2015 MindView LLC: see Copyright.txt
public class SimpleEnumUse {
public static void main(String[] args) {
Spiciness howHot = Spiciness.MEDIUM;
System.out.println(howHot);
}
} /* Output:
MEDIUM
*///:~