Context.write

Write the content to whatever you are writing to.

interface Context
void
write
(
string content
,
dchar evalCode
)

Parameters

content string

the text to write

evalCode dchar

what evaluation character occured after the start delimiter, dchar.init if static content.

Examples

content        -> write("content", dchar.init);
<%= expr() %>  -> write(expr(), '=');

Meta