Skip to content

Instantly share code, notes, and snippets.

@19h
Created January 2, 2012 23:40
Show Gist options
  • Save 19h/1552648 to your computer and use it in GitHub Desktop.
Save 19h/1552648 to your computer and use it in GitHub Desktop.
Dafuq.java // Test
import java.util.Arrays;
class dafuq {
public static void crap (String v) {
System.out.println(v);
}
public static void main(String[] args) {
for ( int i = 0; i <= 200; ++i ) System.out.println("Dafuq.");
dafuq shit = new dafuq();
crap("Fuck");
System.out.println("Exiting.");
QS sort = new QS();
int[] x = { 12, 312, 1, 123, 1122, 13, 5, 23, 6, 7 };
crap(Arrays.toString(x));
crap(Arrays.toString(sort.s(x)));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment