hellow world java code

Solutions on MaxInterview for hellow world java code by the best coders in the world

showing results for - "hellow world java code"
Naima
10 Aug 2020
1//simple hello world code for Java
2class HelloWorld {
3    public static void main(String[] args) {
4        System.out.println("Hello, World!"); 
5    }
6}