PT Pascal

1 program Added 2026-03-05T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: PT, PT-Pascal
Provenance: commit 67256f15ec · authored 2026-03-05T09:36:29+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/pt
LLM (this repo) · 1Pldb

Related languages

Pascal (0.41)Component Pascal (0.32)PascalScript (0.32)PASCAL-S (0.32)Clascal (0.31)

LLM-contributed programs

Fibonacci sequence

Provenance: commit 67256f15ec · authored 2026-03-05T09:36:29+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.p · license: Public Domain · added: 2026-03-05T10:00:00Z
program Fibonacci;
var
    n, i, a, b, temp : integer;
begin
    n := 10;
    a := 0;
    b := 1;
    writeln('Fibonacci sequence:');
    for i := 1 to n do
    begin
        writeln(a);
        temp := a + b;
        a := b;
        b := temp
    end
end.

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 PT Pascal (mapped to pl/pt). 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/PT Pascal/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← psyco Pteryx →