CnC

1 program Added 2026-03-05T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Concurrent Collections, Intel CnC, CnC-HJ
Provenance: commit 5dac574b6c · authored 2026-03-05T00:23:13+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

3 sources · pl_id: pl/intel-concurrent-collections
LLM (this repo) · 1WikipediaWikidata · Q6043451

Related languages

CnC++ (0.61)Concurrent C (0.30)CML (0.27)Concurrent ML (0.27)Concurrent Clean (0.27)

LLM-contributed programs

SimpleGraph

Provenance: commit 5dac574b6c · authored 2026-03-05T00:23:13+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.cnc · added: 2026-03-05T10:00:00Z
////////////////////////////////////////////////////////////////////////////////
// Author: Nick Vrvilo (nick.vrvilo@rice.edu)
////////////////////////////////////////////////////////////////////////////////

/* Really simple CnC example:
 * The init function prescribes an "SX" and an "SY" step instance.
 * Each step puts a single integer item to the corresponding item collection.
 * (The value of the integer put matches the step's tag value.)
 * The finalize function reads two two items and prints their values.
 */

[ int X: () ];
[ int Y: () ];

( $initialize: () ) -> ( SX: 1 ), ( SY: 2 );

( SX: x ) -> [ X: () ];
( SY: y ) -> [ Y: () ];

( $finalize: () ) <- [ X: () ], [ Y: () ];

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 CnC (mapped to pl/intel-concurrent-collections). 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/CnC/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← CN CnC++ →