Pointless
1 program
Added 2026-02-09T09:32:29Z
Agent: claude-codeModel: opusWebSearch: enabled
Evidence
Report issue
View issues
Aliases: ptls
Provenance: commit d0a7c88bf5 · authored 2026-02-09T10:33:30+01:00 · agent claude-code · model opus
Sources mentioning this language
5 sources · pl_id:
pl/pointlessExtensions claimed by this language
1 claim. 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 |
|---|---|---|---|
.ptls | pygments | primary | 141 files |
Related languages
LLM-contributed programs
Hailstone Sequence Chart
Provenance: commit d0a7c88bf5 · authored 2026-02-09T10:33:30+01:00 · agent claude-code · model opus · WebSearch enabled
fn step(n)
if n % 2 == 0 then n / 2 else n * 3 + 1 end
end
fn hailstone(n)
values = [n]
while n > 1 do
n |= step
values |= push(n)
end
values
end
bars = chars("▁▂▃▄▅▆▇█")
fn getBar(n, maxVal)
scaled = 8 * (n - 1) / (maxVal - 1)
bars[Math.min(Math.floor(scaled), 7)]
end
fn chart(values)
values
$ getBar(max(values))
| join("")
end
hailstone(78) | chart | print
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.)