Runs the content as Pike code. This tag is not always available,
since it can be a security hazard.
Attributes
string a;
a = "Hello";
a += " World";
return a;
"=> >
string a;
a = "Hello";
a += " World";
return a;
Example
string a;
a = "Hello";
a += " World";
return a;
"=> >
string a;
a = "Hello";
a += " World";
return a;
|