Prints associative array
import mir.appender: scopedBuffer; auto w = scopedBuffer!char; w.print(["a": 1, "b": 2]); assert(w.data == `["a": 1, "b": 2]` || w.data == `["b": 2, "a": 1]`);
See Implementation
Prints associative array