PL516

1 program Added 2026-02-10T15:26:39Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 61e5ec7450 · authored 2026-02-10T16:27:22+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

PL/6 (0.23)PL/M-386 (0.21)PL/M (0.18)PL/T (0.18)PLAN (0.18)

LLM-contributed programs

Call Setup Procedure

Provenance: commit 61e5ec7450 · authored 2026-02-10T16:27:22+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.pl516 · added: 2026-02-10T15:27:01Z
/* Simple PL516 example - Call processing */
PROC CALL_SETUP;
  DCL STATUS FIXED;
  DCL CALLING_NUM CHAR(10);
  DCL CALLED_NUM CHAR(10);

  /* Initialize call */
  STATUS = GET_CALLING_NUM(CALLING_NUM);
  IF STATUS = 0 THEN DO;
    STATUS = GET_CALLED_NUM(CALLED_NUM);
    IF STATUS = 0 THEN DO;
      CALL ROUTE_CALL(CALLING_NUM, CALLED_NUM);
    END;
    ELSE DO;
      CALL SEND_ERROR_TONE;
    END;
  END;
  RETURN;
END CALL_SETUP;

Contribute — propose a file extension

Tell us where to find evidence about PL516 (mapped to pl/pl516). 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/PL516/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← pl4 placa →