I followed Objective-C beginner’s guide and created a few files. Then I created an Empty Project in XCode and imported the files. Now I want to compile and run them from XCode. How can I do that? The Run/Debug menu option in XCode doesn’t seem to be available.
What template should I use in XCode to write a “Hello World” application in Objective-C not using Cocoa? I can’t find any appropriate template. The Empty Project doesn’t seem to work for this.
You should create a command line tool with the Foundation framework as follows:

I realize that you don’t want to use Cocoa, and I realize that Foundation is the “framework that contains the non-GUI Cocoa classes.” (Learning Objective-C 2.0) However, this is the recommended method for creating a non-GUI Objective-C application by all of the following: