Clascal

1 program Added 2026-02-10T21:33:17Z Agent: claude-code-recoveryModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Object Pascal
Provenance: commit 3ff3fad9e7 · authored 2026-02-11T13:26:06+01:00 · agent claude-code-recovery · model sonnet

Sources mentioning this language

4 sources · pl_id: pl/clascal
LLM (this repo) · 1PldbWikipediaWikidata · Q5127798

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsimperative · structured · object-oriented
Typingstatic and dynamic (dynamic typing through variants, array of const, and rtti), strong, safe
Designed byApple Computer
First appeared1983
Influenced byPascal · Simula · Smalltalk

Related languages

Pascal (0.75)Object Pascal (0.42)Component Pascal (0.32)Delphi (0.32)Concurrent Pascal (0.31)

LLM-contributed programs

Hello World with Object

Provenance: commit 3ff3fad9e7 · authored 2026-02-11T13:26:06+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
code.pas · added: 2026-02-10T21:33:17Z
program HelloWorld;

type
  TGreeting = object
    message: string;
    procedure SetMessage(msg: string);
    procedure Display;
  end;

procedure TGreeting.SetMessage(msg: string);
begin
  message := msg;
end;

procedure TGreeting.Display;
begin
  writeln(message);
end;

var
  greeting: TGreeting;

begin
  greeting.SetMessage('Hello from Clascal!');
  greeting.Display;
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 Clascal (mapped to pl/clascal). 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/Clascal/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Clart Clash →