Modern Object Pascal Introduction for Programmers (castle-engine.io)
zorobo 10 minutes ago
armcat 4 hours ago
jasonwatkinspdx 2 hours ago
WillAdams 8 hours ago
I'd love to be able to take it up again, and this document looks very promising for that, esp. paired with:
https://wiki.freepascal.org/pas2js
which I now see is supported in Lazarus.
If someone has an example graphical project which compiles to an HTML page w/ JavaScript using the above, I'd love to see it and a detailed set of build instructions and notes on installing the needed toolchain and deployment. (as a note, I'm currently working in flet.dev using Python which allowed me to get a small prototype up-and-running, but I'm still looking into self-hosting and doing something more complex)
fatty_patty89 7 hours ago
agumonkey an hour ago
baranul 8 hours ago
pjmlp 8 hours ago
Otherwise it would still be a big contender.
Everything that Zig offers over C as selling point was already there in Object Pascal.
applfanboysbgon 8 hours ago
pjmlp 8 hours ago
Object Pascal compilers were already super fast in MS-DOS hardware!
lelanthran 7 hours ago
No comptime, but everything else, sure, Turbo Pascal (and then Delphi) had.
Maybe it'll blow your mind (not sure if you find this impressive or not), but Turbo Pascal had sub-second compilation per module on large modules back on my 486 with 4MB of RAM.
Sure, Zig has more features than Pascal, but not the ones you listed (except, of course, for comptime).
andsoitis 7 hours ago
And still does. You can get the latest version of Delphi (including a free version for non-commercial use) here: https://www.embarcadero.com/products/delphi
It rocks.
You're also not limited to Delphi. You can use Oxygene https://www.remobjects.com/elements/oxygene/language
lelanthran 5 hours ago
If you're not in the mood to rent your compiler, you can also try Lazarus.
andsoitis 5 hours ago
Also, for non-commercial use, Delphi is free.
mickeyp 5 hours ago
Trivial C interop - yes. Both pascal and cdecl style calling conventions.
Toolchain? Back then - yes. Today? Probably not; depends what you mean by it. It had perfect COM interop which mattered back then, and you could trivially link stuff if you wanted to. And people did.
tliltocatl 3 hours ago
applfanboysbgon 3 hours ago
klipt an hour ago
applfanboysbgon 42 minutes ago
mldbk 3 hours ago
> most developers never bothered learning the "go to next error" hotkey and just spammed F9 (compile & run) whenever they fixed a syntax error
We didn't know we were privileged. I thought it was normal thing to have.
ape4 7 hours ago
pjmlp 7 hours ago
cyberax an hour ago
But it _did_ have range checks for array access.
cisc an hour ago
What's an example of the pain?
sehugg 7 hours ago
pjmlp 7 hours ago
LoganDark 6 hours ago
IIRC Apple went and made Objective-C(/C++) and then eventually Swift. Not sure if they actually embraced C++ all that much - did they really?
pjmlp 5 hours ago
I am talking about Apple after Jobs was kicked out.
You missed the part where NeXT licensed Objective-C from Stepstone, Apple bought NeXT as last survival action before bankruptcy, and OS X sprung out of NeXTSTEP.
LoganDark 5 hours ago
shevy-java 7 hours ago
Still, I don't feel many people want to use Object Pascal these days. If you have the choice between Python and Object Pascal, most people will undoubtedly use Python. It's just how it is right now, and I also don't see how that can change in favour of Object Pascal. Programming languages nowadays have so much more competition, and people are less tolerant of flaws. Strangely enough, people barely seem to work on these flaws; this is one of my pet peeve with ruby, the documentation should be much better but it is not. I no longer find that acceptable in 2026, with AI spam slop lowering the quality and google search being terrible and almost totally useless nowadays. You'd assume that a counter-move to this slop-degradation would be to massively improve documentation, but you still find core projects in ruby or at the least important add-ons, to have low-quality documentation. And barely anybody wants to improve on that either.
maomao5 5 hours ago
Personally, in that family of languages I prefer Ada, but I gave up with programming and programming languages.
Narishma 5 hours ago
MaxBarraclough an hour ago
The SPARK subset of Ada comes pretty close to enforcing purity of Ada functions, although it still permits them to read globals. [0]
It's not just an oversight. The core of the Ada language was designed deliberately. [1]
[0] https://learn.adacore.com/courses/intro-to-spark/chapters/01...
[1] https://en.wikipedia.org/wiki/Ada_(programming_language)#His...
jqpabc123 2 days ago
1) The code isn't as "optimized" as it could be.
2) The talent pool is limited --- chicken or egg issue.
It has been this way for a very long time so I don't see it changing.
mhitza 8 hours ago
Bigger problem is that they teach the fundamentals with the abandonware that is turbo pascal instead of using something like the modern Free Pascal Compiler. Which means knowledge of what is possible outside curricula is limited.
Last year I almost was tasked with porting some Pascal codebase to a modern language. Problem was the project had a bus factor of 1, legacy overengineered and would only compile on windows with some proprietary compiler.
Maybe that company would use Claude/Codex or something like that, today, to port the project.
AlexeyBrin 31 minutes ago
FreePascal can compile TP programs with no changes except for the MS-DOS graphics. A student can swap FP for TP and the code will keep running. But yes, I would switch to FP from the start if I were in charge.
smartmic 7 hours ago
pjmlp 7 hours ago
Also Embarcadero has also adopted LLVM, while still having fast build times.
jqpabc123 18 minutes ago
https://github.com/rochus-keller/Are-we-fast-yet/blob/main/F...
burner420042 2 hours ago
ei8ths 7 hours ago
shevy-java 7 hours ago
I have not used Pascal since then but it was not the most terrible programming language of all times either. These days I would not know why I'd want to use it, compared to IMO better languages. Nonetheless I found it ok for teaching in school back then.
desireco42 2 hours ago
theamk 6 hours ago
> The class instances have to be manually freed, otherwise you get memory leaks.
manual memory management in 2026?
andsoitis 6 hours ago
Depends on compiler & runtime. If you pick Oxygene, for example, you get GC etc. https://www.remobjects.com/elements/oxygene/language
pjmlp 4 hours ago