mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-07 13:48:04 +00:00
11 lines
151 B
Text
11 lines
151 B
Text
module [line!, char!]
|
|
|
|
import pf.Host
|
|
|
|
line! : {} => Str
|
|
line! = \{} ->
|
|
Host.get_line!({})
|
|
|
|
char! : {} => U8
|
|
char! = \{} ->
|
|
Host.get_char!({})
|