| Hosted by CoCalc | Download
1
public class hello {
2
3
public static void main(String[] args) {
4
// Prints "Hello, World" to the terminal window.
5
System.out.println("Hello -- x xx x x World");
6
}
7
8
}
9
10
11
12