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