Created
January 2, 2012 23:40
-
-
Save 19h/1552648 to your computer and use it in GitHub Desktop.
Dafuq.java // Test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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