mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
13 lines
173 B
Plaintext
13 lines
173 B
Plaintext
#import <Foundation/Foundation.h>
|
|
|
|
@interface XYZPerson : NSObject
|
|
- (void)sayHello;
|
|
@end
|
|
|
|
|
|
@implementation XYZPerson
|
|
- (void)sayHello {
|
|
NSLog(@"Hello, World!");
|
|
}
|
|
@end
|