LDPL

1 program Added 2026-02-08T12:00:00Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: LDPL Dinosaur Programming Language
Provenance: commit 5ac664b292 · authored 2026-02-08T16:54:56+01:00 · agent claude-code · model opus

Sources mentioning this language

4 sources · pl_id: pl/ldpl
LLM (this repo) · 1PldbEsolangRosettacode

Related languages

J (0.51)S (0.51)Apl (0.51)Factor (0.49)NPL (0.49)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit 5ac664b292 · authored 2026-02-08T16:54:56+01:00 · agent claude-code · model opus · WebSearch disabled
code.ldpl · license: Apache-2.0 · added: 2026-02-08T12:00:00Z
DATA:
n is number
a is number
b is number
temp is number
i is number

PROCEDURE:
display "How many Fibonacci numbers? " crlf
store 10 in n
store 0 in a
store 1 in b
store 0 in i
sub-procedure fib-loop
    if i is greater than or equal to n then
        return
    end if
    display a crlf
    store b in temp
    add a and b in b
    store temp in a
    add 1 and i in i
    go to fib-loop
end sub-procedure

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 LDPL (mapped to pl/ldpl). 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/LDPL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← ldl1 Le Lisp →