mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 08:34:33 +00:00
9 lines
282 B
Text
9 lines
282 B
Text
module { app_id } -> [fn_annotated_as_value, missing_arg]
|
|
|
|
fn_annotated_as_value : Str
|
|
fn_annotated_as_value = \post_id, comment_id ->
|
|
"/posts/${post_id}/comments/${Num.to_str(comment_id)}"
|
|
|
|
missing_arg : Str -> Str
|
|
missing_arg = \post_id, _ ->
|
|
"/posts/${post_id}/comments"
|