xxxxxxxxxx
public class HelloWorld{
public static void main(String []args){
System.out.println("Hello World");
}
}
xxxxxxxxxx
public class Main {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
xxxxxxxxxx
public static void main(String[] args){
System.out.println("Hello World");
}
xxxxxxxxxx
public class HelloWorld {
public static void main(String []args) {
/* println() function to write Hello, World! */
System.out.println("Hello, World!");
}
}
xxxxxxxxxx
public class PrintHelloWorld
{
public static void main(String[] args)
{
//This is the print line. Anything in the Quotation Maks will be printed
System.out.println("Hello, World!");
}
}
xxxxxxxxxx
// Smart Fast
public class className {
public static void main(String[] args){
System.out.println("GOODBYE WORLD !") ;
}
}
xxxxxxxxxx
//simple hello world code for Java
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
xxxxxxxxxx
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}
xxxxxxxxxx
public class Main{
public static void main(String[] args){
System.out.println("Hello World!");
}
}
xxxxxxxxxx
public class HelloWorld
{
public static void main (String[] args)
{
// Ausgabe Hello World!
System.out.println("Hello World!");
}
}