/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package singletoncounter;

/**
 *
 * @author user
 */
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
            for(int i=0;i<5;i++){
                    SingletonClass singletonObject= SingletonClass.getSingletonObject();
                    System.out.println("Cournter "+singletonObject.getCounter());
            }

    }


}
