package pattpack.ast_1;

import java.io.*;

/**
 *  This class represents an expression of the "while" language.
 *  Currently, expressions are empty.
 */
public class Expr {
    /**
     *  Print this expression.
     *  Currently, print "expression".
     *  @param out The stream where the expression is printed.
     */
    public void print (PrintStream out) {
	out.print ("expression");
    }
}
