//------------
// Introduction to Programming Using Java: An Object-Oriented Approach
//	Arnow/Weiss
//------------

//------------
// Chapter 1 / Section 1.6 / Page 11
//	Another small Java program
//------------ 

//------------
// Notes
//	!!!! Difference from text (error)
//	The following lines are missing from the code in the text:
//			System.out.println(" but it won't be my last.");
//		}
//	}
//	!!!!
//	To compile, rename (or copy) the source file to Program1.java
//------------

class Program1 {
	public static void main(String arg[]) {
		System.out.println("This is my first Java program");
		System.out.println(" but it won't be my last.");	
	}
}
