mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
10 lines
214 B
Text
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])
|
|
}
|