Skip to content

Commit

Permalink
Fix argument order for list-ops (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
BNAndras authored Dec 23, 2023
1 parent b914afc commit 47a358f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/practice/list-ops/list-ops.arr
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ fun my-map(lst, f):
raise("please implement the my-map function")
end

fun my-foldl(lst, initial, f):
fun my-foldl(lst, f, initial):
raise("please implement the my-foldl function")
end

fun my-foldr(lst, initial, f):
fun my-foldr(lst, f, initial):
raise("please implement the my-foldr function")
end

Expand Down

0 comments on commit 47a358f

Please sign in to comment.