6

i'm a beginner Pascal programmer and I recently migrated to the Mac OS X. Today I spent many hours searching for a good Pascal IDE for this OS and found nothing. I used to write code with Geany on Windows and it worked like a charm, I also enjoyed the compiling and running capacity of Geany.

Do you know any Geany-like IDE or at least one that highlights, compiles and runs pascal code on the Mac OS X?

Thank you very much!

Thiago
  • 471
  • 1
  • 7
  • 20

4 Answers4

4

Let's try Lazarus, integrated development environment for Free Pascal.

http://www.lazarus.freepascal.org/

TridenT
  • 4,879
  • 1
  • 32
  • 56
  • Lazarus worked, thank you very much. I will use it from now but i think that it's a little bit too messy. I was trying to make Sublime Text compile and run pascal code by creating a new Build System. I tried the following: { "cmd": ["fpc", "$file"], "selector" : "source.pas", "path" : "/usr/local/bin" } but it didn't work, do you know why is that? – Thiago Aug 01 '12 at 23:38
3

People use XCode with a suitable set of templates, but XCode lost pascal syntax highlighting a way back. There are other options:

But I also still like Lazarus best.

Marco van de Voort
  • 25,628
  • 5
  • 56
  • 89
2

@Thiago: Try with only { "cmd": ["fpc", "$file"]}

Ridvan
  • 21
  • 2
  • This is more like a comment. Please give a detailed answer. Also read [faq](http://stackoverflow.com/faq) – Freakyuser Apr 08 '13 at 12:18
  • Hello and welcome. This isn't really an answer to the question, but is a comment to another answer. You can't leave comments until you have 50 rep. I feel your pain. When you have 50 rep, please leave things like this as comments :) – GHC Apr 08 '13 at 12:19
  • As you wrote, GHC, 50 reps are needed to comment, but the people should not wait for the help until I've got 50 reps. Is there another wayto manage this issue? – Ridvan Sep 24 '13 at 15:21
1

http://freepascal.org/down/i386/macosx.var

I like Free Pascal the most, for beginning I believe it is the best because you don't have too much fancy GUI features to distract you from programming for beginners (algorithms, procedural thinking...).

I didn't try to run this on Mac but it should work... I have used Free Pascal on Linux and Windows with satisfaction.

Dejan Pekter
  • 705
  • 3
  • 18