ORCA/Pascal

1 program Added 2026-03-12T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: ORCA Pascal
Provenance: commit 6c843ab0be · authored 2026-03-12T02:40:03+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

Pascal (0.32)Clascal (0.29)PT Pascal (0.28)Orca (0.28)ORCA/C (0.26)

LLM-contributed programs

Sieve of Eratosthenes

Provenance: commit 6c843ab0be · authored 2026-03-12T02:40:03+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.pas · added: 2026-03-12T10:00:00Z
(* Sieve of Eratosthenes - ORCA/Pascal *)
program Sieve;

const
  Max = 100;

var
  flags: array[2..Max] of boolean;
  i, j, count: integer;

begin
  for i := 2 to Max do
    flags[i] := true;

  count := 0;
  for i := 2 to Max do
  begin
    if flags[i] then
    begin
      count := count + 1;
      j := i + i;
      while j <= Max do
      begin
        flags[j] := false;
        j := j + i
      end
    end
  end;

  writeln('Primes up to ', Max, ': ', count)
end.

Contribute — propose a file extension

Tell us where to find evidence about ORCA/Pascal (mapped to pl/orca_pascal). 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/ORCA-Pascal/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← ORCA/Modula-2 order →