Slope

1 program Added 2026-03-13T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: SLOum's Programming Environment
Provenance: commit f9e350a25f · authored 2026-03-13T04:22:51+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

3 sources · pl_id: pl/slope
LLM (this repo) · 1PldbRosettacode

Related languages

Tweak (0.53)S (0.27)SARL (0.25)DOPE (0.25)Enterprise (0.22)

LLM-contributed programs

Macros and Control Flow

Provenance: commit f9e350a25f · authored 2026-03-13T04:22:51+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.slo · license: MIT · added: 2026-03-13T10:00:00Z
(define let
  (macro (args ...)
    (define in (map (lambda (inargs) (car inargs)) args))
    (define out (map (lambda (outargs) (eval (car (cdr outargs)))) args))
    (define l (eval ['lambda in (cons 'begin ...)]) )
    (apply l out)))

(define while
  (macro (test ...)
    (define el
      (eval ['lambda [] ['if test (list-join ['begin] ... [['el]])]]))
    (el)))

(define when
  (macro (test ...)
    (eval ['if test (cons 'begin ...)])))

(define unless
  (macro (test ...)
    (eval ['if ['not test] (cons 'begin ...)])))


(define do-count (lambda (count lam)
  (for-each lam (range count))))

(define x -5)
(while (< x 5) (display-lines x) (set! x (+ x 1)))

(when (> x 0) (display "X is " x " (which is greater than 0)\n") (display "Yay!\n"))
(unless (< x 0) (display "X is " x "(which is greater than 0)\n") (display "Yay!\n"))

(do-count 5 (lambda (x) (display-lines (+ x 1))))

(display-lines (let ((a 12)(b 3)) (+ a b)))

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 Slope (mapped to pl/slope). 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/Slope/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Sloopy SLOS →