Skip to content

Instantly share code, notes, and snippets.

@jaspercastillo
Created November 3, 2014 11:40
Show Gist options
  • Save jaspercastillo/522b728ed101a3a2c666 to your computer and use it in GitHub Desktop.
Save jaspercastillo/522b728ed101a3a2c666 to your computer and use it in GitHub Desktop.
package com.quillbytes.scratch.singletons;
import static java.lang.System.out;
public class SingletonStaticTest {
public static void main(String... args) {
Class<SingletonStatic> c = SingletonStatic.class;
//SingletonStatic x = SingletonStatic.getInstance();
out.println("end of main");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment