package rebelsky.silly;
/**
* A simple class, intended as an example for a Javadoc
* lecture.
*
* @author Samuel A. Rebelsky
* @version 1.0 of October 2004
*/
public class Silly
{
/**
* Laugh n times.
*
* @param n the number of times to laugh.
* @return absolutely nothing
* @pre n must be non-negative
* @exception Error
* When I feel like it.
*/
public void laugh(int n)
{
} // laugh(int)
} // class Silly