view src/luan/LuanFunction.java @ 1596:a9ff30fb5d89

add Hosting.push_file
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 26 Mar 2021 20:10:44 -0600
parents 8fbcc4747091
children
line wrap: on
line source

package luan;


public abstract class LuanFunction {

	public abstract Object call(Luan luan,Object... args) throws LuanException;

	public static final Object[] NOTHING = new Object[0];

	@Override public String toString() {
		return "function: " + Integer.toHexString(hashCode());
	}

}