But I get an error message: ParallelForeach!(int[string]) error instantiating.
My code: auto example = ["apples": 100, "orange": 250, "banana": 175];foreach(key, value; parallel(example)) { writeln(key, ": ", value); }
What am I doing wrong? Thanks in advance.