mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
15 lines
386 B
Text
15 lines
386 B
Text
platform examples/shared-quicksort
|
|
requires { quicksort : List I64 -> List I64 }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [ mainForHost ]
|
|
effects Effect
|
|
{
|
|
putChar : I64 -> Effect {},
|
|
putLine : Str -> Effect {},
|
|
getLine : Effect Str
|
|
}
|
|
|
|
mainForHost : List I64 -> List I64
|
|
mainForHost = \list -> quicksort list
|