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