Skip to content

Instantly share code, notes, and snippets.

View Elephruit's full-sized avatar

Mike Zehrer Elephruit

  • Wayzata, MN
View GitHub Profile
@Elephruit
Elephruit / descriptionOfProgram.m
Created July 9, 2012 15:50
Description of Program (CS193P Assignment 2)
+ (NSString *) descriptionOfProgram:(id)program
{
NSMutableArray *stack;
if ([program isKindOfClass:[NSArray class]]) stack = [program mutableCopy];
NSString *programDescription = @"";
while (stack.count) {
programDescription = [programDescription stringByAppendingString:[self descriptionOfTopOfStack:stack]];
if (stack.count) {
programDescription = [programDescription stringByAppendingString:@", "];
}