1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-01-19 20:34:19 +00:00

33 lines
4.1 KiB
Mathematica
Raw Normal View History

2020-11-15 00:22:08 +05:30
#import <myClass.h>
@import Foundation
// Single line comments
/*
 * Multi line comment
 */
int main (int argc, const char * argv[]) {
 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
 NSLog(@"Storage size for int : %d \n", sizeof(int));
 NSLog (@"hello world");
 if (NO)
 {
 NSLog(@"I am never run");
 } else if (0)
 {
 NSLog(@"I am also never run");
 } else
 {
 NSLog(@"I print");
 }
 [pool drain];
 return 0;
}
@implementation MyClass {
 long distance;
 NSNumber height;
}