Online Programming Server

Login

Login with facebook [?]

Facebook

Tutorial 42: CSC1130S - Lecture 1b: First Java Program

You are here: Tutorials >> Basic >> Java >> Introduction to Computing Using Java >> CSC1130S - Lecture 1b: First Java Program

Tutorial ID42
TitleCSC1130S - Lecture 1b: First Java Program

The First Java Program

Type all carefully and save it to a file named Welcome.java
class Welcome {
/* The Welcome Program
   -------------------
   Illustrates a simple program displaying
   a message.
*/
	public static void main (String [] args) {
		System.out.println("Welcome to Java!");
	}
}

Post Your Comment

Title
Message