comparison 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
comparison
equal deleted inserted replaced
647:8e8c30b72e9b 648:e387e4021afe
1 package luan.impl; 1 package luan.impl;
2 2
3 import luan.LuanException; 3 import luan.LuanException;
4 4
5 5
6 interface Expressions extends Code { 6 public interface Expressions extends Code {
7 public Object eval(LuanStateImpl luan) throws LuanException; 7 public Object eval(LuanStateImpl luan) throws LuanException;
8 } 8 }