view core/src/luan/impl/Expressions.java @ 338:f05c631ebaaf

README.md edited online with Bitbucket
author Hugo Teixeira <hugo.tech@gmail.com>
date Wed, 25 Mar 2015 04:29:32 +0000
parents 3dcb0f9bee82
children e387e4021afe
line wrap: on
line source

package luan.impl;

import luan.LuanException;


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