Guest User

Untitled

a guest
Dec 11th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. /* Animal.h */
  2. #import <Foundation/Foundation.h>
  3.  
  4. @interface Animal : NSObject
  5. {
  6. int age;
  7. }
  8. @property int age;
  9. -(int) age;
  10. @end
  11.  
  12. /* Animal.m */
  13.  
  14. #import "Animal.h"
  15.  
  16. @implementation Animal
  17.  
  18. @end
Add Comment
Please, Sign In to add comment