Re: Pascal-Interpreter?

[email protected] Wed, 20 Apr 2022 00:51:36 -0500
Newsgroups alt.comp.lang.pascal
Organization Aioe.org NNTP Server
Message-ID <[email protected]>
On 4/19/22 01:00, F. W. wrote:
> Am 17.04.2022 um 11:09 schrieb [email protected]:
>> On 4/11/22 02:57, F. W. wrote:
>>> Does anybody know a Pascal-Interpreter?
>>>
>>> FW
>>
>> 'instantfpc' is better than an interpreter. It compiles and runs a 
>> pascal program at once.
>>
>> Install the FreePascal compiler:
>>
>> $ sudo apt-get install fpc
>>
>> 'instantfpc' is a binary that is included with FreePascal. Instant fpc 
>> compiles and runs the .pas file passed to it on the command line:
>>
>> $ instantfpc program.pas
> 
> That sound interesting. Thank you!
> 
> FW

You're very welcome.

InstantFPC can compile and run a program faster than python interpreters 
can load the program into memory.

FreePascal/Lazarus is my favorite secret weapon.