Skip to content

Instantly share code, notes, and snippets.

@kevinsawicki
Created April 26, 2011 17:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinsawicki/942748 to your computer and use it in GitHub Desktop.
Save kevinsawicki/942748 to your computer and use it in GitHub Desktop.
Main.java
public class Main {
/**
* @see java.lang.Object#hashCode()
*/
public int hashCode() {
return -1;
}
public static void main(String args[]) {
System.out.println("hello world!");
}
/**
* @see java.lang.Object#toString()
*/
public String toString() {
return "main";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment