WebDocument.operator<<


public operator operator<<

Prototype:

operator<< (x)

Parameters

x
the element to output (string, number, array, anything)

Description:

The equivalent of the echo keyword. This operator should be used to output text to the web document. If the BeginDocument function was not called before, a ConceptException will be raised.

Return value:

Returns this WebDocument.

Example
	var doc=new WebDocument();
	doc.BeginDocument();
	doc << "Hello world !!! " << doc.endl << "Hello from Concept !";
	doc.EndDocument();