Submitted by heartin on Tue, 09/28/2021 - 00:01
-
Write a HelloWorld program. Write a simple program with a main method that prints Hello World.
-
Use package and import statement.
-
Create a public class Hello1 that is part of a package com.javajee.package1.
-
Add the standard main method that will be invoked by JVM.
-
Add one more method called "main" with same signature as the standard main class, but with no arguments.
-
In the new method, print something:
Submitted by heartin on Sat, 07/11/2020 - 07:27
We will discuss about Java 8 Lambdas and streams.