Java - Hello World Lab
Using the code example below, create a new class called HelloWorld. Make this program display the text "Hello World!" on one line and "This is yourname." on the second line. Then find a cool quote and display it on the third line.
public class HelloWorld{
public static void main(String []args){
System.out.println("Hello World!");
}
}
Upload the file HelloWorld.java to Google Classroom.