ASPECT

1 program Added 2026-03-17T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: ProComm ASPECT, Asynchronous Communications Scripting Protocol Technology
Provenance: commit ed7294f475 · authored 2026-03-17T03:27:10+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

CSP (0.17)JCSP (0.16)CCS (0.16)IPDL (0.16)HLPSL (0.14)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit ed7294f475 · authored 2026-03-17T03:27:10+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.asp · added: 2026-03-17T10:00:00Z
; FIBONACCI.ASP - Fibonacci sequence calculator
; ProComm Plus ASPECT scripting language
; Displays the first 10 Fibonacci numbers

PROC MAIN
  INTEGER A
  INTEGER B
  INTEGER TEMP
  INTEGER COUNT

  A = 0
  B = 1
  COUNT = 0

  PRINTS "Fibonacci Sequence"
  PRINTS "------------------"

  WHILE COUNT < 10
    PRINTS A
    TEMP = B
    B = A + B
    A = TEMP
    COUNT = COUNT + 1
  ENDWHILE

ENDPROC

Contribute — propose a file extension

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