1. writing sequence to a file ??
According to the documentation puts function can not write
a sequence that contains other sequences. The documentation
is correct. So the question is what function do you use,
It seems like the puts function should have a length parameter
to make it more usable.
2. Re: writing sequence to a file ??
- Posted by Jeffrey Fielding <JJProg at CYBERBURY.NET>
Mar 12, 2000
-
Last edited Mar 13, 2000
puts writes a string (a sequence of bytes) to a file. print writes any
Euphoria object to a file. for example, print(1,{1,2,3,4,{5.5}}) will
display:
{1,2,3,4,{5.5}}
Jeff Fielding
Bernie Ryan wrote:
> According to the documentation puts function can not write
>
> a sequence that contains other sequences. The documentation
>
> is correct. So the question is what function do you use,
>
> It seems like the puts function should have a length parameter
>
> to make it more usable.