Lazarus is an open-source multiplatform RAD environment for the Free Pascal compiler, in the spirit of Delphi, with which it has a fairly high degree of compatibility.
I asked on the Lazarus programming forum how to open a physical disk. I want to allow the user to …
delphi freepascal lazarus fpcIn Delphi, I usually write a simple leak test like this: program MemLeak; {$APPTYPE CONSOLE} uses SysUtils; procedure Leak; begin { …
delphi memory-leaks freepascal lazarus