mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
10 lines
186 B
Text
10 lines
186 B
Text
app [main!] { pf: platform "./platform/main.roc" }
|
|
|
|
import pf.Stdout
|
|
import pf.Stderr
|
|
|
|
demo_input = "L000000000000000000000000"
|
|
|
|
main! = || {
|
|
_suffix = demo_input.drop_prefix("L")
|
|
}
|