Lets Start Code

//Example :
//------------- Example  ----------------------
public class HelloWorld {
public static void main(String[] args) {
// Prints "Hello, World" in the terminal window.
System.out.println("Hello, World");
}
}
// --
//End
Previous :     Next
Prisum Code


//------------- Example ----------------------
public class HelloWorld {
public static void main(String[] args) {
// Prints "Hello, World" in the terminal window.
System.out.println("Hello, World");
}
}