Free Pascal
Live information from Lazarus
-
Re: AI assisted translation of CORE-MATH to Free Pascal
@nanobit, https://github.com/joaopauloschuler/pas-core-math/commit/4b2f475e2ad344c64a850bcf6dc9b085f699e598
Next time, a PR will be easier.
@lemonparty, this is a test about https://github.com/joaopauloschuler/beyond-python-smolagents at coding https:/... -
Re: [FPC 3.2.4, Windows] PTC unit broken?
It is not ptc that is broken, but aggpas (or your own code). It is disturbing to see to put the ball in the wrong court.
All ptc demo code passes. As of today's. And it did so l... -
Re: AI assisted translation of CORE-MATH to Free Pascal
Hi.
I don't quite undertand what this thread testing. Can anybody give short description about what is going on?
Thank you. -
Cannot build Units for Sinclair QL - fpmkunit.pp fails to compile.
I know it's not a popular platform, but I'm attempting to bring it a bit more up to date and I've made some changes to the RTL, which compiles fine, but compiling the units fails as follows:
[code=bash]cd SourceCode/FPC_Source
make packages_clean OS_TA... -
Re: I hope FreePascal can support syntax like Python's f'string {variable}' or ...
@xiyi0616
In Pascal there is a type that can contain all "things", and is calling variant type.
In this case you don't have to put ".toString" (or choose when to put) at design time, you can write:
[code=pascal] var Name, Age: variant;
Name := 'Maria';...