From scripting to compiling... I hope
October 2, 2006 6:59 AM
Subscribe
I've got a couple of ideas for useful computer applications, and having moved over to Mac, would like to develop them for OS X. However, I'm completely unfamiliar with developing stand alone programs (I pretty much only work in PHP, though occasionally Perl and have grazed Ruby and Python).
Where would I start to learn how to create my own complied apps? C? C++? Any book or artcle repositories you all would suggest?
posted by Ikazuchi to computers & internet (8 comments total)
3 users marked this as a favorite
Given the speed of modern computers using an interpreted language won't set you back by much in terms of speed, unless you're writing something that really needs to be efficient. But if you do wish to write something in a compiled language, the easiest jump from PHP is perhaps Java (actually byte-compiled, but close enough). Beyond that, go ahead and learn C/C++ too.
Another option is to actually look for a compiler for the languages you already know... there is a commercial PHP one (Roadsend) and also an open source one that doesn't quite work yet.
Basically, its usually not very necessary to choose a language to use based on whether or not it can be compiled. Instead, look at what features the languages provide, and what you need or want, and go from there.
Have fun!
posted by destrius at 7:16 AM on October 2, 2006