write_lines type (minor)
- Posted by petelomax Apr 15, 2022
- 561 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)