ZPL
1 program
Added 2025-10-22T15:33:33Z
Model: openai/gpt-4oTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit f1bb375d86 · authored 2025-10-22T17:33:33+02:00 · model openai/gpt-4o
Sources mentioning this language
5 sources · pl_id:
pl/zplWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | Zebra Technologies |
|---|---|
| Influenced by | ANSI BASIC |
Related languages
LLM-contributed programs
Matrix Multiplication in ZPL
Provenance: commit f1bb375d86 · authored 2025-10-22T17:33:33+02:00 · model openai/gpt-4o · Temp 0.4
program matmult;
config var
n : integer = 100;
region
R = [1..n, 1..n];
var
A, B, C : [R] double;
procedure main();
begin
A := [i,j] i + j;
B := [i,j] i - j;
C := [i,j] sum([k] A[i,k] * B[k,j]);
end;
begin
main();
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.)