Mengu: > well, at least it's not len(ta). A free function len() is quite useful if you want to use it in higher order functions: map(len, ["red", "yo"]) In D: ["red", "yo"].map!(s => s.length) ["red", "yo"].map!walkLength Bye, bearophile