Scribble
1 program
Added 2026-02-12T13:53:59Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 1a191a7786 · authored 2026-02-12T14:54:33+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/scribbleExtensions 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 |
|---|---|---|---|
.scrbl | wikidata | primary | 86.6K files |
Related languages
LLM-contributed programs
Getting Started Documentation
Provenance: commit 1a191a7786 · authored 2026-02-12T14:54:33+01:00 · agent claude-code · model sonnet · WebSearch disabled
#lang scribble/base
@title{Getting Started with Scribble}
@section{Introduction}
Scribble is a documentation language that allows you to write
documentation with embedded code examples.
@codeblock|{
#lang racket
(define (factorial n)
(if (<= n 1)
1
(* n (factorial (- n 1)))))
}|
This function computes the @italic{factorial} of a number.
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.)