i has 1337 code

Code:
String str = new String("Not even Remotely funny :)");
System.out.println(str.length.toString()); // 24
String chopped = str.subString(10, str.Length-10);
System.out.println(chopped); // "emotel" - I assume you didn't include the " :)", thus it is "emo"

My bad.. Smalltalk uses 1-index, forgot just about everything else is 0-index.
 
Shoseki said:
while (this.getThread().isActive()) {
System.out.println("Meh");
}


:D
Infinite loop!!! Posting meh will mean the thread will stay active which means you print meh which means.....

noob

:p
 
Back
Top Bottom