roc/crates/cli/tests/test-projects/module_params/arity_mismatch.roc
2024-11-11 16:59:08 +11:00

17 lines
288 B
Text

app [main] {
pf: platform "../test-platform-simple-zig/main.roc",
}
import Api { appId: "one", protocol: https }
https = \url -> "https://$(url)"
main =
"""
# too many args
$(Api.getUser 1 2)
$(Api.baseUrl 1)
# too few args
$(Api.getPostComment 1)
"""