//------------
// Introduction to Programming Using Java: An Object-Oriented Approach
//	Arnow/Weiss
//------------

//------------
// Chapter 2 / Section Java Interlude - Variables and Assignment / Page 34
//	Illustrates the erroneous assignment on page 34
//------------ 

//------------
// Notes
//	!!!!This program contains compile-time errors!!!!
//------------

import java.io.*;

class Chapter2_JI1_1 {
	public static void main(String arg[]) {
		String				s;
		PrintStream			p;

		s = System.out;
		p = "Hello";
	}
}
