In Ocaml this would look as: ```d let names =["foo";"bar";"baz"] inlet funmap = List.map ( fun name -> ( fun () -> print_endline name)) names in
List.iter ( fun f -> f () ) funmap ;; ~ ``` I think in the D-example it is basically one function and not 3.