Kuroko

1 program Added 2026-02-08T12:00:00Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: krk
Provenance: commit e9be619aed · authored 2026-02-08T16:49:00+01:00 · agent claude-code · model opus

Sources mentioning this language

2 sources · pl_id: pl/kuroko
LLM (this repo) · 1Pldb

Related languages

Koneko (0.12)Kuin (0.12)Lurk (0.12)Kapok (0.12)SPARK (0.12)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit e9be619aed · authored 2026-02-08T16:49:00+01:00 · agent claude-code · model opus · WebSearch disabled
code.krk · license: MIT · added: 2026-02-08T12:00:00Z
def fibonacci(n):
    if n <= 0:
        return []
    if n == 1:
        return [0]
    let result = [0, 1]
    for i in range(2, n):
        result.append(result[i - 1] + result[i - 2])
    return result

def main():
    let n = 20
    let fibs = fibonacci(n)
    print(f'First {n} Fibonacci numbers:')
    for i in range(len(fibs)):
        print(f'  F({i}) = {fibs[i]}')

    # Demonstrate list comprehension
    let evens = [x for x in fibs if x % 2 == 0]
    print(f'Even Fibonacci numbers: {evens}')

    # Demonstrate sum using reduce-like pattern
    let total = 0
    for x in fibs:
        total += x
    print(f'Sum of first {n} Fibonacci numbers: {total}')

main()

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 Kuroko (mapped to pl/kuroko). 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/Kuroko/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← KuMir Kusto query file →