Author Topic: I made the uber-est java program ever  (Read 1905 times)

0 Members and 1 Guest are viewing this topic.

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
I made the uber-est java program ever
« on: January 11, 2005, 08:37:38 pm »
Quote
D:\Program Files\eclipse-SDK-3.0.1-win32\eclipse\workspace\hithere>java main NEW
BYS MOM
Hello, NEWBYS MOM

I pwnzor~~

Code: [Select]
public class main
{
public static void main(String [] args)
{
System.out.print("Hello, ");
if(args.length == 0)
System.out.print("whoever you are");
else
for(int i = 0; i < args.length; i++)
{
System.out.print(args[i] + " ");
}
System.out.println();
}
}