View Single Post
Old 11-11-2003, 11:00 PM   #14 (permalink)
numist
Banned
 
Location: UCSD, 510.49 miles from my love
hello world, how classic...

Code:
class HelloWorld
{
   public static void main(String args[])
   {
      String greeting = "Hello";
      System.out.println(greeting + " World!");
   }
}
same thing, more junk, result:
boolean truth = (php >= java);

looking forward to more.

[edited to correct logic error, may as well be accurate]

Last edited by numist; 11-11-2003 at 11:11 PM..
numist is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37