//------------
// Introduction to Programming Using Java: An Object-Oriented Approach
//	Arnow/Weiss
//------------

//------------
// Chapter 4 / Section 4.2 / Page 90
//		Laugher1 class
//------------ 

//------------
// Notes:
//	Run the program for class Chapter4_2_1 for a sample use of 
//		this class.
//------------

class Laugher1 {
	public Laugher1() {
	}

	public void laugh() {
		System.out.println("haha");
	}
}