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