Hi there, I found your project on lobste.rs and was reading through the post and sifting through the book and found this:
let flattened = ["a", ["b", ["c"]]] # ["a", "b", "c"]
This is probably supposed to be:
let flattened = ["a", ["b", ["c"]]] | flatten # ["a", "b", "c"]
Hi there, I found your project on lobste.rs and was reading through the post and sifting through the book and found this:
This is probably supposed to be: