mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
7 lines
201 B
Text
7 lines
201 B
Text
app "main" imports [ Effect ] provides [ rocMain ] to "./platform"
|
|
|
|
|
|
rocMain : Effect.Effect {} as Fx
|
|
rocMain =
|
|
when List.len (Str.split "hello" "JJJJ there") is
|
|
_ -> Effect.putLine "Yay"
|