mirror of
https://github.com/mpv-player/mpv
synced 2025-02-17 21:27:08 +00:00
12 lines
270 B
Mathematica
12 lines
270 B
Mathematica
|
#import <CoreServices/CoreServices.h>
|
||
|
#import <OpenGL/OpenGL.h>
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
@autoreleasepool {
|
||
|
NSArray *ary = @[@1, @2, @3];
|
||
|
NSLog(@"test subscripting: %@", ary[0]);
|
||
|
NSApplicationLoad();
|
||
|
}
|
||
|
}
|