package code.term;

import code.term.visitor.TermVisitor;

/**
 * Term representation for ints.
 *
 * @author Sergio Antoy
 * @since June 17, 2003
 */
public class TermImplInt extends TermImplBuiltin {
    public final int value;

    public TermImplInt(int value) { this.value = value; }

    public <R,T> R accept(TermVisitor<R,T> v, T o) {
        return v.visit(this, o);
    }

}

