Shed Skin

1 program Added 2026-03-12T03:36:07Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: ShedSkin
Provenance: commit 8a9463c7f7 · authored 2026-03-12T04:37:07+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

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

Related languages

Simkin (0.22)Ion Shell (0.18)Skip (0.18)Spin (0.18)Shesmu (0.16)

LLM-contributed programs

Sieve of Eratosthenes

Provenance: commit 8a9463c7f7 · authored 2026-03-12T04:37:07+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.py · license: GPL-3.0 · added: 2026-03-12T03:36:07Z
def sieve(limit):
    is_prime = [True] * (limit + 1)
    is_prime[0] = False
    is_prime[1] = False
    i = 2
    while i * i <= limit:
        if is_prime[i]:
            j = i * i
            while j <= limit:
                is_prime[j] = False
                j += i
        i += 1
    result = []
    for k in range(limit + 1):
        if is_prime[k]:
            result.append(k)
    return result

primes = sieve(100)
for p in primes:
    print(p)

Contribute — propose a file extension

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