daScript

1 program Added 2026-02-08T14:08:18Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: DAS, Daslang
Provenance: commit 911e6baf7e · authored 2026-02-08T15:09:17+01:00 · agent claude-code · model opus

Sources mentioning this language

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

Related languages

Dart (0.30)AngelScript (0.26)Dark (0.25)Slang (0.25)Purerl (0.24)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit 911e6baf7e · authored 2026-02-08T15:09:17+01:00 · agent claude-code · model opus · WebSearch disabled
code.das · license: BSD-3-Clause · added: 2026-02-08T14:08:18Z
def fibonacci(n: int): int
    if n <= 1
        return n
    var a = 0
    var b = 1
    for i in range(2, n + 1)
        let c = a + b
        a = b
        b = c
    return b

[export]
def main()
    for i in range(0, 20)
        print("{fibonacci(i)} ")
    print("\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 daScript (mapped to pl/das). 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/daScript/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Darwin Information Typing Architecture dasel →