mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-06 13:18:01 +00:00
9 lines
192 B
Text
9 lines
192 B
Text
platform "fibonacci"
|
|
requires {} { main : I64 -> I64 }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [main_for_host]
|
|
|
|
main_for_host : I64 -> I64
|
|
main_for_host = \a -> main(a)
|