ePerl
1 program
Added 2026-03-06T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Embedded Perl, eperl
Provenance: commit 4f093bb81a · authored 2026-03-06T09:13:18+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
HTML List Generation
Provenance: commit 4f093bb81a · authored 2026-03-06T09:13:18+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
<html>
<body>
<h1>ePerl Example</h1>
<ul>
<: my @fruits = ('Apple', 'Banana', 'Cherry', 'Date');
foreach my $fruit (@fruits) { :>
<li><:= $fruit :></li>
<: } :>
</ul>
<p>Total items: <:= scalar(@fruits) :></p>
<p>Today's date: <:= scalar(localtime()) :></p>
</body>
</html>