home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue2 / SDL.ARC / !gcc / examples / h / Simple < prev   
Encoding:
Text File  |  2001-01-02  |  100 b   |  12 lines

  1. #include <objc/Object.h>
  2.  
  3. @interface simple: Object
  4. {
  5.   int value;
  6. }
  7.  
  8. -init: (int) x;
  9. -print;
  10.  
  11. @end
  12.