mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 10:02:38 +03:00
14 lines
348 B
Plaintext
14 lines
348 B
Plaintext
platform "jvm-interop"
|
|
requires {} { program : _ }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [programForHost]
|
|
|
|
programForHost : {
|
|
interpolateString : (Str -> Str) as InterpolateString,
|
|
mulArrByScalar : (List I32, I32 -> List I32) as MulArrByScalar,
|
|
factorial : (I64 -> I64) as Factorial,
|
|
}
|
|
programForHost = program
|