func_streams_writeline.rst 465 B

123456789101112131415161718192021222324252627282930313233343536
  1. .. _func_streams_writeline:
  2. =========
  3. WriteLine
  4. =========
  5. WriteLine -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. WriteLine( stream:TStream,str$ )
  10. Write a line of text to a stream
  11. A sequence of bytes is written to the stream (one for each character in @str)
  12. followed by the line terminating sequence "~r~n".
  13. Parameters
  14. ==========
  15. Return Values
  16. =============
  17. True if line successfully written, else False
  18. Examples
  19. ========
  20. See Also
  21. ========