24 lines
421 B
Objective-C
Executable File
24 lines
421 B
Objective-C
Executable File
//
|
|
// Interpreter.h
|
|
// Brainfuck
|
|
//
|
|
// Created by Kim Wittenburg on 20.05.13.
|
|
// Copyright (c) 2013 brainfuck. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "Printer.h"
|
|
|
|
@interface Interpreter : NSObject
|
|
|
|
+ (Interpreter *)interpreter;
|
|
|
|
- (id)init;
|
|
|
|
@property (strong, nonatomic) id<Printer> printer;
|
|
|
|
- (void)execute:(NSString *)script withInput:(NSString *)input error:(NSError **)error;
|
|
|
|
@end
|