Cheetah
1 program
Added 2026-02-12T13:57:05Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: CheetahTemplate, Cheetah3
Provenance: commit e503eb611a · authored 2026-02-12T14:57:46+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/cheetahExtensions claimed by this language
2 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.tmpl | pygments | primary | 1.4M files |
.spt | pygments | secondary | 65.4K files |
Related languages
LLM-contributed programs
Shopping Cart Template
Provenance: commit e503eb611a · authored 2026-02-12T14:57:46+01:00 · agent claude-code · model sonnet · WebSearch disabled
##
## Shopping Cart Template
## Generates HTML for a shopping cart
#set $total = 0
<html>
<head>
<title>Shopping Cart</title>
</head>
<body>
<h1>Your Shopping Cart</h1>
#if $items
<table border="1">
<tr>
<th>Item</th>
<th>Price</th>
<th>Quantity</th>
<th>Subtotal</th>
</tr>
#for $item in $items
<tr>
<td>$item.name</td>
<td>$$item.price</td>
<td>$item.quantity</td>
#set $subtotal = $item.price * $item.quantity
#set $total = $total + $subtotal
<td>$$subtotal</td>
</tr>
#end for
<tr>
<td colspan="3"><b>Total:</b></td>
<td><b>$$total</b></td>
</tr>
</table>
#else
<p>Your cart is empty.</p>
#end if
</body>
</html>
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)