Croc

1 program Added 2026-02-27T07:33:10Z Agent: claude-codeModel: claude-opus-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: MiniD
Provenance: commit 838b6b3578 · authored 2026-02-27T08:33:33+01:00 · agent claude-code · model claude-opus-4-6

Sources mentioning this language

3 sources · pl_id: pl/croc
LLM (this repo) · 1PldbPygments

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
.crocpygmentsprimary623 files

Related languages

MiniD (0.46)Crochet (0.24)Candid (0.18)Minion (0.18)miniMAL (0.17)

LLM-contributed programs

Sieve of Eratosthenes

Provenance: commit 838b6b3578 · authored 2026-02-27T08:33:33+01:00 · agent claude-code · model claude-opus-4-6 · WebSearch enabled
code.croc · added: 2026-02-27T07:33:10Z
module samples.sieve

function main()
{
	local N = 1_000_000
	local start = time.microTime()
	local bits = array.new(math.iceil(N / ((math.intSize * 8) as float)), -1)

	// set 0 and 1 to false
	bits[0] &= ~3

	for(i; 2 .. math.sqrt(N) as int)
	{
		if(bits[i >> 6] & (1 << (i & 63)))
		{
			for(j; i * i .. N, i)
				bits[j >> 6] &= ~(1 << (j & 63))
		}
	}

	local count = 0

	for(i; 0 .. #bits)
	{
		local x = bits[i] - ((bits[i] & 0xAAAAAAAAAAAAAAAA) >>> 1)
		x = (x & 0x3333333333333333) + ((x >>> 2) & 0x3333333333333333)
		x = (x + (x >>> 4)) & 0x0F0F0F0F0F0F0F0F
		count += (x * 0x0101010101010101) >>> 56
	}

	local end = time.microTime()
	writefln("Took {:.3} ms", (end - start) / 1000.0)
	writefln("There are {} primes below {}.", count, N)
}

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 Croc (mapped to pl/croc). 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/Croc/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← crmsh Crochet →