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/pointless
LLM (this repo) · 1PldbPygmentsEsolangRosettacode

Extensions 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.
ExtensionSourceStrengthSWH
.ptlspygmentsprimary141 files

Related languages

Less (0.22)PASCAL-S (0.11)PostScript (0.11)GPSS (0.10)JOSS (0.10)

LLM-contributed programs

Hailstone Sequence Chart

Provenance: commit d0a7c88bf5 · authored 2026-02-09T10:33:30+01:00 · agent claude-code · model opus · WebSearch enabled
code.ptls · added: 2026-02-09T09:32:29Z
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.)

Contribute — propose a file extension

Tell us where to find evidence about Pointless (mapped to pl/pointless). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Pointless/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Pointing Pointless. →