SLIP

1 program Added 2026-02-06T12:01:31Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Symmetric List Processor
Provenance: commit 1723399220 · authored 2026-02-06T13:02:20+01:00 · agent claude-code · model sonnet

Sources mentioning this language

4 sources · pl_id: pl/slip
LLM (this repo) · 1PldbWikipediaWikidata · Q7390955

Related languages

GPP (0.27)Logos (0.24)PHP (0.23)HSP (0.22)TSP (0.21)

LLM-contributed programs

List Creation and Traversal

Provenance: commit 1723399220 · authored 2026-02-06T13:02:20+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.f · added: 2026-02-06T12:01:31Z
C     SLIP PROGRAM TO CREATE AND TRAVERSE A LIST
      PROGRAM LISTEX
      INTEGER HEAD, ITEM, PTR
C     INITIALIZE SLIP
      CALL SLIPINI
C     CREATE A NEW LIST
      HEAD = CREATELIST()
C     ADD ELEMENTS TO THE LIST
      ITEM = 10
      CALL INSEND(HEAD, ITEM)
      ITEM = 20
      CALL INSEND(HEAD, ITEM)
      ITEM = 30
      CALL INSEND(HEAD, ITEM)
C     TRAVERSE THE LIST
      PTR = HEAD
      DO WHILE (PTR .NE. 0)
         ITEM = GETVAL(PTR)
         WRITE(6,100) ITEM
         PTR = GETNEXT(PTR)
      END DO
  100 FORMAT(' VALUE: ', I5)
      STOP
      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 SLIP (mapped to pl/slip). 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/SLIP/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Slint SLIP (programming language) →