1. writing sequence to a file ??
- Posted by Bernie Ryan <LockCityData at CS.COM> Mar 12, 2000
- 451 views
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
- 423 views
- 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.
3. Re: writing sequence to a file ??
- Posted by Bernie Ryan <LockCityData at CS.COM> Mar 12, 2000
- 417 views
Thanks Bernie