The OpenD Programming Language

print

Prints array

Examples

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

Meta