Thanks!
This works!
Now I have a C++ server that performs very fast computations
for Maxima or any other system that can write into named pipes.
I would like to submit this as a contribuited package
once I have written a decent Maxima interface.
At the moment my main interest is having fast LLL computation.
Maybe I'll also write a version that uses sockets.
Fabrizio
On Sat, 15 Sep 2007, Andrej Vodopivec wrote:
> On 9/14/07, Fabrizio Caruso <caruso at dm.unipi.it> wrote:
>> I would like to read and write strings into such files.
>>
>> I can open for writing a file as a stream by
>> "f : openr(<path>)"
>>
>> I can read it by
>> "readline(f)"
>
> To write to a file you need to open it with openw. To append stuff to
> a file you need to open it with opena. To write stuff to a file use
> printf.
>
>