prompto.python.PythonIntegerLiteral Maven / Gradle / Ivy
The newest version!
package prompto.python;
public class PythonIntegerLiteral extends PythonLiteral {
Long value;
public PythonIntegerLiteral(String text) {
super(text);
this.value = Long.valueOf(text);
}
@Override
public String toString() {
return value.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy