xamarin-macios/tests/common/mac/SimpleClass.m

15 строки
156 B
Mathematica
Исходник Обычный вид История

2016-05-26 16:06:52 +03:00
#import "SimpleClass.h"
int GetFour ()
{
return 4;
}
2016-05-26 16:06:52 +03:00
@implementation SimpleClass
- (int)doIt {
NSLog(@"Hello, World!");
return 42;
}
@end