
public class IntLiteral extends Exp {
	int n;

	public IntLiteral(int n) {
		super();
		this.n = n;
	}
	@Override
	void welcome(Visitor v) {
		v.visit(this);
	}

}
