Files
allwpilib/cscore/src/main/native/objcpp/objcpptemp.mm

13 lines
173 B
Plaintext

#import <Foundation/Foundation.h>
@interface XYZPerson : NSObject
- (void)sayHello;
@end
@implementation XYZPerson
- (void)sayHello {
NSLog(@"Hello, World!");
}
@end