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

prompto.python.Python3NativeCall Maven / Gradle / Ivy

The newest version!
package prompto.python;

import prompto.utils.CodeWriter;

public class Python3NativeCall extends PythonNativeCall {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy