Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Sometimes it's nice to open an interpreter, type out some code and see if it's working, rather than having to compile something large like an Xcode project just to quickly test something. Does an Objective-C Interpreter exist for the Mac, or am I out of luck?

UPDATE: There's a paid program in the App Store called CodeRunner, which lets you run Obj-C quickly (and several other languages). It's not an interpreter, but works pretty well for testing out ideas quickly: http://itunes.apple.com/us/app/coderunner/id433335799?mt=12

share|improve this question
1  
Try using clang-interpreter (one of the examples in Clang). It is quite limited indeed, but you can extend it easily. – SK-logic Aug 27 '11 at 11:48

2 Answers

up vote 11 down vote accepted

You can use F-Script, which is Smalltalk-based, but lets you interface with Cocoa. You can also embed it in your application, to let you inspect views and other things at runtime. It's quite useful. Edit: as pointed out in the comments, there are other great language bridges available, like PyObjC, RubyCocoa/MacRuby, Nu, etc. CINT is an example of a C interpreter, but not Obj-C.

As for an actual Objective-C interpreter, I don't think one really exists. But it's not too hard to set up a "Command Line Tool" project in Xcode, which gives you a really simple main.m file to try something in.

share|improve this answer
1  
I also have a, er... s-load of small test console programs in my source folder. The only problem is the name. In Delphi, projects get a default name ProjectN, where N is a running number (Delphi checks if it already exists). For most test projects, that is fine with me. Something like it would make things easier in Xcode, IMO. Can one write plugins for Xcode? – Rudy Velthuis Aug 26 '11 at 23:40
Sounds like it's possible‌​. – jtbandes Aug 26 '11 at 23:41
4  
Other interpreted languages on the objective-c runtime are Nu and MacRuby. For quickly trying out C stuff (arithmetic, type casting, etc.), I've found CINT useful. – mckeed Aug 27 '11 at 0:06
3  
There's also PyObjC (installed by default on Snow Leopard; dunno about Lion) -- you can access pretty much all of Cocoa from a Python interpreter session: from Cocoa import *. – Josh Caswell Aug 27 '11 at 1:22
+1 for python! It works like a charm, and it works great for scripts you can use with your project, like ones that can read Core Data models, for example. – Cameron Spickert Aug 27 '11 at 1:48

For those arriving here late: Take a look at Tosti. A basic but pretty functional Objective-C interpreter.

It's a side-project I put on GitHub as there seems very little available at the moment. I'm using it to do some remote debugging. Support available.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.