view src/luan/interp/Expressions.java @ 92:d03022acea47

don't allow "%>" in output statement string git-svn-id: https://luan-java.googlecode.com/svn/trunk@93 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 07 Mar 2013 23:09:01 +0000
parents 8ede219cd111
children 2428ecfed375
line wrap: on
line source

package luan.interp;

import luan.LuanException;


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