package util;

/**
 * Handy-dandy routines for debugging purposes.
 */

public final class Debug {

    /**
     * Prints a string to standard out.  Later, there will be some
     * method for changing this to print nothing, or even compile away.
     *
     * @param s The debugging string to be printed.
     */
    public static void print(String s) {
	System.out.println("Debug: " + s);
    };
}












