You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
264 B
9 lines
264 B
2 years ago
|
chan configure stderr -buffering none
|
||
|
puts -nonewline stderr "1 hello on stderr with crlf newline\r\n"
|
||
|
flush stderr
|
||
|
puts -nonewline stderr "2 hello on stderr with unix newline\n"
|
||
|
flush stderr
|
||
|
puts -nonewline stderr "3 hello on stderr no line-ending"
|
||
|
flush stderr
|
||
|
|