roc/crates/cli/tests/test-projects/module_params/BadAnn.roc
2024-10-09 20:04:36 +02:00

9 lines
261 B
Text

module { appId } -> [fnAnnotatedAsValue, missingArg]
fnAnnotatedAsValue : Str
fnAnnotatedAsValue = \postId, commentId ->
"/posts/$(postId)/comments/$(Num.toStr commentId)"
missingArg : Str -> Str
missingArg = \postId, _ ->
"/posts/$(postId)/comments"