Hi All, I have simple program in C:
How I can do it in Objective-C???
I can't understand, how convert this peace of code in Objective-C
Thx for help
Code:
#include <stdio.h>
void myprint();
main()
{
myprint();
}
void myprint()
{
printf("Hello\n");
}
How I can do it in Objective-C???
I can't understand, how convert this peace of code in Objective-C
Thx for help