PROMAL
1 program
Added 2026-02-06T12:03:28Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Programmer's Microapplication Language
Provenance: commit eda5a7b865 · authored 2026-02-06T13:04:27+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/promalWikipedia 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 | imperative (procedural) · structured |
|---|---|
| Designed by | Systems Management Associates |
| First appeared | 1984 |
| Influenced by | C |
Extensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.s | wikipedia | proposed | 4.8M files |
Related languages
LLM-contributed programs
Fibonacci Numbers
Provenance: commit eda5a7b865 · authored 2026-02-06T13:04:27+01:00 · agent claude-code · model sonnet · WebSearch disabled
PROGRAM Fibonacci
; PROMAL program to calculate Fibonacci numbers
; Demonstrates structured programming with procedures
CONST
MAX = 10
VAR
i, n1, n2, next: INTEGER
PROC PrintFib(count: INTEGER)
LOCAL i, n1, n2, next: INTEGER
n1 = 0
n2 = 1
PRINT("Fibonacci Series up to ", count, " terms:")
FOR i = 1 TO count DO
IF i = 1 THEN
PRINT(n1)
NEXT i
ENDIF
IF i = 2 THEN
PRINT(n2)
NEXT i
ENDIF
next = n1 + n2
n1 = n2
n2 = next
PRINT(next)
ENDFOR
END PROC
BEGIN
PrintFib(MAX)
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.)