Pascal-FC

1 program Added 2026-02-26T13:09:45Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: Pascal with Facilities for Concurrency
Provenance: commit 852c2c6a8d · authored 2026-02-26T14:10:18+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/pascal-fc
LLM (this repo) · 1Pldb

Related languages

Concurrent Pascal (0.28)CnC++ (0.17)Pascal-SC (0.16)Concurrent C (0.16)PASCAL-S (0.16)

LLM-contributed programs

Shared Variable Mutual Update

Provenance: commit 852c2c6a8d · authored 2026-02-26T14:10:18+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
code.pas · added: 2026-02-26T13:09:45Z
program mutual;

var
  shared: integer;

process one;
var
  loop: integer;
begin
  for loop := 1 to 20 do
    shared := shared + 1
end;

process two;
var
  loop: integer;
begin
  for loop := 1 to 20 do
    shared := shared + 1
end;

begin
  shared := 0;
  cobegin
    one;
    two
  coend;
  writeln(shared)
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 Pascal-FC (mapped to pl/pascal-fc). 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/Pascal-FC/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Pascal Script pascal-i →