Re: Pascal-Interpreter?

"F. W." <[email protected]> Tue, 19 Apr 2022 08:00:23 +0200
Newsgroups alt.comp.lang.pascal
Organization A noiseless patient Spider
Message-ID <[email protected]>
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