Standard Pascal

1 program Added 2026-02-12T11:37:38Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: ISO 7185, ISO Pascal
Provenance: commit 7697588f5e · authored 2026-02-12T12:38:10+01:00 · agent claude-code · model sonnet

Sources mentioning this language

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

Related languages

SML (0.29)Standard ML (0.29)Extended Pascal (0.26)Standard Lisp (0.26)Standard BASIC (0.24)

LLM-contributed programs

Sieve of Eratosthenes

Provenance: commit 7697588f5e · authored 2026-02-12T12:38:10+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.pas · added: 2026-02-12T11:37:38Z
program Sieve;
const
  MAX = 100;
var
  prime: array [2..MAX] of boolean;
  i, j: integer;
begin
  for i := 2 to MAX do
    prime[i] := true;

  for i := 2 to MAX do
  begin
    if prime[i] then
    begin
      writeln(i);
      j := i * 2;
      while j <= MAX do
      begin
        prime[j] := false;
        j := j + i
      end
    end
  end
end.

Contribute — propose a file extension

Tell us where to find evidence about Standard Pascal (mapped to pl/standard_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/Standard Pascal/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Standard ML Standard Test and Programming Language →