//------------
// Introduction to Programming Using Java: An Object-Oriented Approach
//	Arnow/Weiss
//------------

//------------
// Chapter 1 / Section 1.8 / Page 19
//	An example of incorrect output
//------------ 

//------------
// Notes:
//	To compile, rename (or copy) the source file to Program1.java
//------------

import java.io.*;

class Program1 {
	public static void main(String arg[]) {
		System.out.println("This is my first Java program");
		System.out.println("but it will be my last.");
	}
}
