-
Fork this repository and rename it using your last name and first name in the following format:
lastname-firstname
(Example:beauvais-nazareno) -
Upload a
Main.javaprogram that contains the code to print "Hello World!" to the console.
- Repository forked and renamed correctly
-
Main.javaadded to the repository -
Main.javacompiles and runs without errors - Output includes exactly:
Hello World!
public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}