summaryrefslogtreecommitdiff
path: root/MLKInterpreter.h
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-07-01 17:40:34 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-07-01 17:40:34 +0200
commite97d47a664131b5c80f35265f33e82eefb04f1d0 (patch)
treeebf4e251add7474062fbf7cbba2696f1e64e6cc4 /MLKInterpreter.h
parent2ce5b7ded1c689548e9becb6fb39284ea68a1941 (diff)
Implement a raw version of LOAD.
Diffstat (limited to 'MLKInterpreter.h')
-rw-r--r--MLKInterpreter.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/MLKInterpreter.h b/MLKInterpreter.h
index c149389..b96722f 100644
--- a/MLKInterpreter.h
+++ b/MLKInterpreter.h
@@ -16,6 +16,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#import "MLKStream.h"
+
#import <Foundation/NSArray.h>
#import <Foundation/NSObject.h>
@@ -28,4 +30,6 @@
+(NSArray*) eval:(id)program
inLexicalContext:(MLKLexicalContext *)context
withEnvironment:(MLKLexicalEnvironment *)lexenv;
+
++(BOOL) load:(MLKStream *)stream verbose:(BOOL)verbose print:(BOOL)print;
@end