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/promal
LLM (this repo) · 1PldbWikipediaRosettacodeWikidata · Q7120399

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsimperative (procedural) · structured
Designed bySystems Management Associates
First appeared1984
Influenced byC

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.
ExtensionSourceStrengthSWH
.swikipediaproposed4.8M files

Related languages

TAL (0.36)C/AL (0.33)PAL (0.31)Piet (0.31)Pike (0.31)

LLM-contributed programs

Fibonacci Numbers

Provenance: commit eda5a7b865 · authored 2026-02-06T13:04:27+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.pro · added: 2026-02-06T12:03:55Z
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.)

Contribute — propose a file extension

Tell us where to find evidence about PROMAL (mapped to pl/promal). 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/PROMAL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← prolog-pack-pm Promela →