
After five years of development,
Free Pascal 2.0 is ready. With the new compiler, its authors believe they are ready to become a larger open source development platform. In the MS-DOS world, Pascal was one of the major programming languages and is by means of Borland Delphi an important programming language in the Windows world. In the open source world, Free Pascal is the leading Pascal compiler and while open source is a bit biased using the C language, the Pascal language has a lot to offer to open source programmers.
Is it me or are the executables that FreePascal creates HUGE?
program test;
uses windows;
BEGIN
windows.messagebox(0,'testing','testing',0);
END.
This creates a 105KB file! And while in "release" mode.
In Delphi, same code results to 15KB executable.
If UPX'ed, 92 and 9KB, respectively.
I shudder on the thought what size button-label 'Hello World' would be....