roc/crates/cli/tests/test-projects/module_params/arity_mismatch.roc
2025-01-10 10:29:20 -08:00

17 lines
297 B
Text

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