15 lines
264 B
Mathematica
15 lines
264 B
Mathematica
|
|
//
|
||
|
|
// main.m
|
||
|
|
// AFNetworking Mac Example
|
||
|
|
//
|
||
|
|
// Created by Mattt Thompson on 11/09/23.
|
||
|
|
// Copyright 2011年 Gowalla. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Cocoa/Cocoa.h>
|
||
|
|
|
||
|
|
int main(int argc, char *argv[])
|
||
|
|
{
|
||
|
|
return NSApplicationMain(argc, (const char **)argv);
|
||
|
|
}
|