All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.interedition.text.lisp.NumberAtom Maven / Gradle / Ivy

The newest version!
package eu.interedition.text.lisp;

/**
 * @author Gregor Middell
 */
public class NumberAtom implements Expression {

    private final long value;

    public NumberAtom(long value) {
        this.value = value;
    }

    public long getValue() {
        return value;
    }

    @Override
    public String toString() {
        return Long.toString(value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy