First, you are using an iOS tutorial to develop a Mac OS X application. Core data use is very similar between the two, but there are some obvious difference in how you use it in your application (namely, you generally use NSArrayController
for mac apps, whereas you use NSFetchedResultsController
for iOS apps).
The template for a command-line application does not have a Core Data checkbox.
To me, this is a benefit, because the Core Data code included with Xcode templates is, IMO, not the best way to use it in your application.
However, that being said, you can create a new Cocoa Application, and check to include Core Data. This is probably enough for what you want to do, which is play around with Core Data.
Or, you can just copy/paste the code into the command line application to setup and use the basic core data stack. Make sure you import
the Core Data module, and you should be good to go.