
example.eperl
-------------------------------------------------
some text...
<?eperl
print "some more text"; # comment some thing
?>
2 + 2 = <?eperl print 2+2; ?>
output:
-------------------------------------------------
some text...
some more text
2 + 2 = 4
it is also possible to include own subroutines and/or import some using
'use' or 'do' or whatever...