view core/src/luan/impl/Expressions.java @ 648:e387e4021afe

start compiler with len operator
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 30 Mar 2016 19:40:48 -0600
parents 3dcb0f9bee82
children
line wrap: on
line source

package luan.impl;

import luan.LuanException;


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