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/ldplRelated languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 5ac664b292 · authored 2026-02-08T16:54:56+01:00 · agent claude-code · model opus · WebSearch disabled
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.)