so i am just trying to learn obj-c
i have this book:
so i just wanna make my first hello world app
but this (old) book still refers to project builder, the old xcode
my code for the app looks like this:
Code:
//
// main.m
// prog2
//
// Created by Mykel2727 on 10/24/08.
// Copyright __MyCompanyName__ 2008. All rights reserved.
//
#import <stdio.h>
int main(int argc, char *argv[])
{
printf ("Hello World!!!n");
return 0;
}
thats in the main.m file
and i selected cocoa application as my choice at the beginning
i know my code is fine,
its just that xcode doesn't like this
i hit build and go and nothing happens
what do i do
thnks