roc/crates/compiler/uitest/tests/solve/function_alias_in_signature.txt
2023-04-20 16:18:23 -05:00

12 lines
236 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.drop inp 1)]
_ -> []
main = any
# ^^^ Parser U8