mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-04 09:04:33 +00:00
10 lines
213 B
Text
10 lines
213 B
Text
platform "nodejs-interop"
|
|
requires {} { main : Str -> Str }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [main_for_host]
|
|
|
|
main_for_host : Str -> Str
|
|
main_for_host = \message ->
|
|
main(message)
|