mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-25 01:41:43 +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
|