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

prompto.runtime.BreakResult Maven / Gradle / Ivy

The newest version!
package prompto.runtime;

import prompto.type.VoidType;
import prompto.value.BaseValue;

public class BreakResult extends BaseValue {
	
	protected BreakResult() {
		super(VoidType.instance());
	}

	private static BreakResult instance = new BreakResult();
	
	public static BreakResult instance() {
		return instance;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy