1. write_lines type (minor)
- Posted by petelomax Apr 15, 2022
- 737 views
While formally adding write_lines() to Phix, I think I spotted a minor typo in https://openeuphoria.org/docs/std_io.html#_1732_write_lines
if write_lines(...) != -1 then puts(STDERR, "Failed to write data\n") end if
Surely that should be either "= -1" or "!= +1" (not tested)
2. Re: write_lines type (minor)
- Posted by Lnettnay Apr 15, 2022
- 713 views
append_lines() https://openeuphoria.org/docs/std_io.html#_1740_append_lines has the same error.
Lonny