Block a user
"Loop" in Prelude
Problem was with higher-arity eq?
applications. Fixed in 5c96cd8538
, along with the wrong algorithm for neq?
"Loop" in Prelude
The arity of the function to eq?
in the lambda you pass to filter is weird. I haven't figured out why it's causing a panic, but you can get this to work correctly if that line reads:
`let…
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) ->…