Files
l2/test_read_stdin.sl
IgorCielniak 452bb0318b added io
2025-12-18 20:18:39 +01:00

14 lines
196 B
Plaintext

import stdlib/stdlib.sl
import stdlib/io.sl
: main
1024
read_stdin # returns (len addr)
dup 0 > if
write_buf
0 exit
then
"read_stdin failed" puts
exit
;