Archived
1

Archive Project

This commit is contained in:
Kim Wittenburg
2017-07-25 16:07:48 +02:00
parent 641cb5b435
commit ca3436da44
37 changed files with 9402 additions and 1599 deletions

23
Brainfuck/Interpreter.h Executable file
View File

@@ -0,0 +1,23 @@
//
// 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