mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-18 06:20:52 +00:00
12 lines
184 B
Text
12 lines
184 B
Text
app [main!] { pf: platform "./platform/main.roc" }
|
|
|
|
import pf.Stdin
|
|
import pf.Stdout
|
|
|
|
str : Str -> Str
|
|
str = |s| s
|
|
|
|
main! = || {
|
|
line = Stdin.line!()
|
|
Stdout.line!(str(line))
|
|
}
|