mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-07 05:38:01 +00:00
11 lines
156 B
Text
11 lines
156 B
Text
module [line!, raw!]
|
|
|
|
import pf.Host
|
|
|
|
line! : Str => {}
|
|
line! = \text ->
|
|
Host.put_line!(text)
|
|
|
|
raw! : Str => {}
|
|
raw! = \text ->
|
|
Host.put_raw!(text)
|