Sha256: 1ce10f5b4653574c7b455d277ea6029d4ee0da159dc7499fcc3c04b4d2f060b7
Contents?: true
Size: 544 Bytes
Versions: 5
Compression:
Stored size: 544 Bytes
Contents
// // main.m // WaxApplication // // Created by eiffel on 3/5/13. // Copyright (c) 2013 likenote. All rights reserved. // #import <UIKit/UIKit.h> #import "wax.h" #import "wax_http.h" #import "wax_json.h" #import "wax_filesystem.h" int main(int argc, char *argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; wax_start("AppDelegate.lua", luaopen_wax_http, luaopen_wax_json, luaopen_wax_filesystem, nil); int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate"); [pool release]; return retVal; }
Version data entries
5 entries across 2 versions & 1 rubygems