JOVIAL
1 program
Added 2025-10-28T10:24:31Z
Model: google/gemini-2.5-proTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit a0440b1408 · authored 2025-10-28T11:24:31+01:00 · model google/gemini-2.5-pro
Sources mentioning this language
5 sources · pl_id:
pl/jovialWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | procedural · imperative · structured |
|---|---|
| Typing | static, strong, safe, structural |
| Designed by | Software Engineering Associates · System Development Corporation |
| First appeared | 1960 |
| Influenced by | ALGOL · SAGE |
Related languages
LLM-contributed programs
Towers of Hanoi in JOVIAL
Provenance: commit a0440b1408 · authored 2025-10-28T11:24:31+01:00 · model google/gemini-2.5-pro · Temp 0.4
START
PROC HANOI(N,F,V,T)
BEGIN
ITEM N BYTE;
ITEM F BYTE;
ITEM V BYTE;
ITEM T BYTE;
IF N > 0
THEN
BEGIN
HANOI(N-1,F,T,V);
PRINT(F,T);
HANOI(N-1,V,F,T);
END
END
PROC PRINT(A,B)
BEGIN
ITEM A BYTE;
ITEM B BYTE;
TERM;
PRINT("MOVE DISK FROM ");
PRINT(A);
PRINT(" TO ");
PRINT(B);
END
HANOI(4,"A","B","C");
STOP
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.)