roc/crates/compiler/uitest/tests/solve/function_alias_in_signature.txt
2023-10-29 13:23:33 -05:00

12 lines
241 B
Text

app "test" provides [main] to "./platform"
Parser a : List U8 -> List [Pair a (List U8)]
any: Parser U8
any = \inp ->
when List.first inp is
Ok u -> [Pair u (List.dropFirst inp 1)]
_ -> []
main = any
# ^^^ Parser U8