Scaffold

1 program Added 2026-02-13T09:12:57+00:00 Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: ScaffCC
Provenance: commit 36b14b401c · authored 2026-02-13T10:13:49+01:00 · agent claude-code · model sonnet

Sources mentioning this language

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

Related languages

Scade (0.16)Scenic (0.16)Manifold (0.14)SpecC (0.14)OpenSCAD (0.13)

LLM-contributed programs

Bell State Preparation

Provenance: commit 36b14b401c · authored 2026-02-13T10:13:49+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.scaffold · added: 2026-02-13T09:12:57+00:00
// Bell state preparation in Scaffold
// Prepares the state |00⟩ + |11⟩

module bell_state (qbit q0, qbit q1) {
    // Apply Hadamard gate to first qubit
    H(q0);

    // Apply CNOT gate with q0 as control and q1 as target
    CNOT(q0, q1);
}

// Main scaffold module
scaffold main {
    qbit q[2];
    bell_state(q[0], q[1]);
}

Contribute — propose a file extension

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