mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
11 lines
147 B
Text
11 lines
147 B
Text
module [line!, char!]
|
|
|
|
import pf.Host
|
|
|
|
line! : {} => Str
|
|
line! = \{} ->
|
|
Host.getLine! {}
|
|
|
|
char! : {} => U8
|
|
char! = \{} ->
|
|
Host.getChar! {}
|