Files
l2/tests/io_write_file.sl

18 lines
309 B
Plaintext
Raw Permalink Normal View History

2026-01-08 13:15:27 +01:00
import ../stdlib/stdlib.sl
import ../stdlib/io.sl
2025-12-18 11:32:35 +01:00
word main
2026-01-08 13:15:27 +01:00
"/tmp/l2_write_file_test.txt" # path
"hello from write_file test\n" # buffer
2025-12-18 11:32:35 +01:00
write_file
dup 0 > if
"wrote bytes: " puts
2025-12-19 20:23:26 +01:00
puti cr
2025-12-18 11:32:35 +01:00
0
exit
2026-01-03 09:04:50 +00:00
end
2025-12-18 11:32:35 +01:00
"write failed errno=" puts
2025-12-19 20:23:26 +01:00
puti cr
2025-12-18 11:32:35 +01:00
exit
end