
Originally Posted by
The Unknown Guru
#include<stdio.h>
#include<conio.h>
int main()
{
printf("Hello Max./n");
printf("Press a key to exit.");
getch();
return 0;
}
I'm glad somebody did this. 
Code:
public class HelloMax {
public static void main(String[] args) {
System.out.println("Hello Max. :p");
}
}