mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
6 lines
207 B
Text
6 lines
207 B
Text
app "test" provides [getInfallible] to "./platform"
|
|
|
|
getInfallible = \result -> when result is
|
|
#^^^^^^^^^^^^^{-1} [Ok a]* -[[getInfallible(0)]]-> a
|
|
Ok x -> x
|
|
_ -> crash "turns out this was fallible"
|