Skip to content

Instantly share code, notes, and snippets.

@odds-get-evened
Last active March 6, 2022 21:45
Show Gist options
  • Save odds-get-evened/da34fb91cc6b6ac53e61396fee69f045 to your computer and use it in GitHub Desktop.
Save odds-get-evened/da34fb91cc6b6ac53e61396fee69f045 to your computer and use it in GitHub Desktop.
Simple way to get any Java application going.
package org.whatever;
/**
* this is how i begin all my Java projects.
* inside the `SimpleClass()` constructor you
* can implement all your other code stuffs.
*/
class SimpleClass() {
public static void main(String[] args) {
new SimpleClass();
}
public SimpleClass() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment