1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include "myModule.h" #include "stdio.h" @implementation MyClass { }; -(void)publicMethod { printf("Hello public!\n"); } -(int)privateMethod { printf("Hello private!\n"); return 5; } @end