document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #import <Foundation/Foundation.h>
  2.  
  3. int main (int argc, char *argv[])
  4. {
  5.  
  6.   NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
  7.  NSDictionary *buildings =
  8.  [NSDictionary dictionaryWithObjectsAndKeys:
  9.       @"40.806549, 73.964096",
  10.                @"Carman",
  11.  @"40.806038, -73.963615",
  12.  @"Broadway",
  13.  @"40.806038, -73.963615 ",
  14.  @"John Jay",
  15.  @"40.807224, -73.959305",
  16.  @"East Campus",
  17.  @"40.806152, -73.961891",
  18.  @"Hartley",
  19.  @"40.806492, -73.963135",
  20.  @"Butler",
  21.  @"40.808949, -73.961304",
  22.  @"Uris",
  23.  @"40.809128, -73.960365",
  24.  @"Mudd",
  25.  @"40.808563, -73.960464",
  26.  @"Schmerhorn",
  27.                nil];
  28.  
  29.  if ([buildings writeToFile: @"buildings" atomically: YES] == NO)
  30.    NSLog (@"Save to file failed!");
  31.  
  32.  [pool drain];
  33.  return 0;
');