roc/test/HostedIO.roc
2025-11-06 15:57:39 -05:00

10 lines
214 B
Text

HostedIO := [].{
## Print a string to stdout
put_line! : Str => {}
## Read a line from stdin
get_line! : {} => Str
## Write to a file
write_file! : Str, Str => Try({}, [FileWriteError])
}