view core/src/luan/impl/Expressions.java @ 663:b438a47196bc

finish compiling function blocks
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 07 Apr 2016 00:01:10 -0600
parents e387e4021afe
children
line wrap: on
line source

package luan.impl;

import luan.LuanException;


public interface Expressions extends Code {
	public Object eval(LuanStateImpl luan) throws LuanException;
}