Circom

1 program Added 2026-02-09T19:34:50Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 99c1b90189 · authored 2026-02-09T20:35:41+01:00 · agent claude-code · model opus

Sources mentioning this language

2 sources · pl_id: pl/circom
LLM (this repo) · 1Linguist

Extensions 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.
ExtensionSourceStrengthSWH
.circomlinguistprimary14.9K files

Related languages

Circle (0.33)Circus (0.33)COMEFROM (0.29)CircuitPython (0.21)Ciao (0.17)

LLM-contributed programs

N-ary Multiplier Circuit

Provenance: commit 99c1b90189 · authored 2026-02-09T20:35:41+01:00 · agent claude-code · model opus · WebSearch disabled
code.circom · license: GPL-3.0 · added: 2026-02-09T19:34:50Z
pragma circom 2.0.0;

template Multiplier2() {
    signal input a;
    signal input b;
    signal output c;

    c <== a * b;
}

template MultiplierN(n) {
    signal input in[n];
    signal output out;

    component muls[n - 1];
    for (var i = 0; i < n - 1; i++) {
        muls[i] = Multiplier2();
    }

    muls[0].a <== in[0];
    muls[0].b <== in[1];
    for (var i = 1; i < n - 1; i++) {
        muls[i].a <== muls[i - 1].c;
        muls[i].b <== in[i + 1];
    }

    out <== muls[n - 2].c;
}

component main = MultiplierN(4);

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 Circom (mapped to pl/circom). 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/Circom/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Circles Circuit Diagram →