1570a3792b
Change test data files extension to "java"
9 lines
185 B
Java
9 lines
185 B
Java
//class
|
|
enum Color implements Runnable {
|
|
WHITE, BLACK, RED, YELLOW, BLUE;
|
|
|
|
public void run() {
|
|
System.out.println("name()=" + name() +
|
|
", toString()=" + toString());
|
|
}
|
|
} |