The OpenD Programming Language

print

Prints escaped character in the form 'c'.

Examples

import mir.appender: scopedBuffer;
auto w = scopedBuffer!char;
w.print('щ');
w.print('\U0010FFFE');
assert(w.data == `'щ''\U0010FFFE'`);

Meta