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

prompto.python.Python2NativeCall Maven / Gradle / Ivy

The newest version!
package prompto.python;

import prompto.utils.CodeWriter;

public class Python2NativeCall extends PythonNativeCall {

	public Python2NativeCall(PythonStatement statement) {
		super(statement);
	}

	@Override
	public void toDialect(CodeWriter writer) {
		writer.append("Python2: ");
		super.toDialect(writer);
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy