Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
481
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. enum Directions
  2. {
  3.     NORTH, SOUTH, WEST, EAST;
  4.      
  5.     private Directions()
  6.     {
  7.         System.out.println(1);
  8.     }
  9. }
  10.  
  11. public class A
  12. {
  13.     public static void main(String[] args)
  14.     {
  15.         Directions d1 = new Directions();
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement