Skip to content

Instantly share code, notes, and snippets.

@vijfhoek
Last active September 16, 2015 22:44
Show Gist options
  • Save vijfhoek/c9f9668bac2602be76c9 to your computer and use it in GitHub Desktop.
Save vijfhoek/c9f9668bac2602be76c9 to your computer and use it in GitHub Desktop.
class LolThisIsAVeryLongClassName
extends AnotherExtremelyLongClassName {
public static int HelloWorld(String a,
String b, String c, String d,
String e, String f) {
System.out.println("Hello " + a + b
+ c + " world " + d + e + f +
"!");
}
public static void main(String[] args) {
HelloWorld("1", "a", "3", "2", "c",
"a");
}
}
class LolThisIsAVeryLongClassName
extends AnotherExtremelyLongClassName
{
public static int HelloWorld(String a,
String b, String c, String d,
String e, String f)
{
System.out.println("Hello " + a + b
+ c + " world " + d + e + f +
"!");
}
public static void main(String[] args)
{
HelloWorld("1", "a", "3", "2", "c",
"a");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment