Pascal Script
1 program
Added 2026-03-17T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: RemObjects Pascal Script, PS
Provenance: commit 0707a79373 · authored 2026-03-17T06:08:50+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
3 sources · pl_id:
pl/pascal-script-2Wikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | procedural · object-oriented · scripting |
|---|---|
| Typing | strong |
| Designed by | Carlo Kok · Innerfuse · RemObjects · Lazarus · Free Pascal teams |
| First appeared | 2000 |
| Influenced by | Pascal · Object Pascal |
| License | Custom open-source license |
Related languages
LLM-contributed programs
Fibonacci
Provenance: commit 0707a79373 · authored 2026-03-17T06:08:50+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
program FibonacciDemo;
function Fibonacci(n: Integer): Integer;
begin
if n <= 1 then
Result := n
else
Result := Fibonacci(n - 1) + Fibonacci(n - 2);
end;
var
i: Integer;
begin
for i := 0 to 10 do
WriteLn('Fibonacci(' + IntToStr(i) + ') = ' + IntToStr(Fibonacci(i)));
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.)