1

I would like to test Objective-C, but I don't have a Mac. Is it possible to program Objective-C in Windows? Another possibility is to do it in Linux. Does anyone know if either is possible?

RustyTheBoyRobot
  • 5,891
  • 4
  • 36
  • 55
marko
  • 10,684
  • 17
  • 71
  • 92
  • Previously asked and answered in more detail here: http://stackoverflow.com/questions/56708/objective-c-for-windows – Chuck May 25 '10 at 17:49

1 Answers1

4

Yes, the GNU Compiler Collection contains an Objective-C frontend.

It will easily work on Linux and can be used on Windows too if you workaround with some binary distributions like cygwin or gnustep.

But I don't think you will have any kind of Cocoa API, you will have just the ObjC syntax.

Jack
  • 131,802
  • 30
  • 241
  • 343