Re: [fpc-devel] Program too long ?

2016-01-13 Thread Jonas Maebe
On 13/01/16 23:01, Mathias wrote: I wanted a test following compile 1'000'000x WriteLn. It's not the program that's too long, but a single procedure that's too long. If you split it up in a 1000 (or maybe even a 100) procedures, it should compile fine. Jonas

[fpc-devel] Program too long ?

2016-01-13 Thread Mathias
I wanted a test following compile 1'000'000x WriteLn. programProject1; begin WriteLn(1); WriteLn(2); // ... WriteLn(100); end. Then breaks the compiler from the following error. $ fpc pascaltest.pas Free Pascal Compiler version 3.1.1

Re: [fpc-devel] Closures

2016-01-13 Thread Sven Barth
On 09.12.2015 11:43, bla...@blaise.ru wrote: On 09.03.2015 16:36, bla...@blaise.ru wrote: On 15.01.2012 18:26, Blaise wrote: I have implemented the support for the Delphi-compatible non-generic closures. I am ready to commit the improved (and fully compilable) version. Four years later,