Block a user
Should Ludus have a linked list collection type?
Prelude should have a
foldr
function
Here's foldr
(which is not "fold from the right," but right-associative):
fn foldr {
"Folds a list using, right-associatively."
(f as :fn, []) -> []
(f as :fn, xs as :list) ->…