17 lines
251 B
Objective-C
Executable File
17 lines
251 B
Objective-C
Executable File
//
|
|
// Printer.h
|
|
// Brainfuck
|
|
//
|
|
// Created by Kim Wittenburg on 20.05.13.
|
|
// Copyright (c) 2013 brainfuck. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@protocol Printer <NSObject>
|
|
@required
|
|
|
|
- (void)print:(NSString *)string;
|
|
|
|
@end
|