dust/std/io.ds

10 lines
117 B
Plaintext

io = {
read_line = fn () -> str {
READ_LINE
}
write_line = fn (output: any) -> none {
WRITE_LINE output
}
}