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

prompto.python.PythonDecimalLiteral Maven / Gradle / Ivy

The newest version!
package prompto.python;


public class PythonDecimalLiteral extends PythonLiteral {

	Double value;
	
	public PythonDecimalLiteral(String text) {
		super(text);
		this.value = Double.valueOf(text);
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy