// // AppDelegate.m // RDemo // // Created by Simon Urbanek on 10/14/12. // Copyright (c) 2012 Simon Urbanek. All rights reserved. // #import "AppDelegate.h" #import "REngine.h" @implementation AppDelegate @synthesize window = _window; - (void)dealloc { [super dealloc]; } - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { REngine *engine = [REngine mainEngine]; [engine executeString: @"{ par(mar=c(2,2,0.3,0.3)); plot(1:10, col=2) }"]; } @end