- or download this
use abstractor; #there is no real name yet
...
$output->compute("<a></a> <b></b> <c></c>");
- or download this
$output->add_definitions ( { a => '$result = "HELLO"',
...
#the interpreter ignores tags that it does not have #definitions for
- or download this
<html>
<head></head>
...
HELLO WORLD!!
</body>
</html>
- or download this
$output->add_definitions ( { a => '$result = "HELLO"' });
...
print $output->compute("<a></a> <a></a> <a></a>\n");
print $output->compute("<a><a><a></a></a></a>\n");
- or download this
$output->add_definitions
...
<code>
<html><body>HELLO WORLD!!</body></html>