[REBOL] Re: Setting line mode on a newly create connection.
From: anton::wilddsl::net::au at: 22-Apr-2006 1:51
Rebol should translate those correctly for you,
in the case of networking in /lines mode, you
shouldn't have to think about it.
If you should ever need to know, Rebol knows
which platform it is on, so it is possible to find:
4-Jun-2004
Determine host os's line-terminator character sequence.
(Carl Sassenrath's working method. Use this on a file
you are going to create anyway.)
p: open %tmp
line-flag: p/state/with
close p
(I only ever needed to know this for a file-splitting
application.)
Regards,
Anton.