/**
 * an library which contains a function to say bye.
 *
 * @version	$Id: Bye.java,v 1.1.2.1 2003/10/29 22:12:20 nthiery Exp $
 * @author	Nicolas M. Thiéry <nthiery@users.sourceforge.net>
**/

public class Bye {
    
    public static void bye() {
	System.out.println("Bye!");
    }
}
