DGD

1 program Added 2026-03-06T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Dworkin's Game Driver, DGD LPC
Provenance: commit 71d990fed1 · authored 2026-03-06T10:24:55+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

Dream Maker (0.10)Game Maker Language (0.10)Kodu (0.09)DIV (0.09)Gambit (0.08)

LLM-contributed programs

Fibonacci

Provenance: commit 71d990fed1 · authored 2026-03-06T10:24:55+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.c · added: 2026-03-06T10:00:00Z
/* fibonacci.c - Fibonacci numbers in DGD/LPC */
int fibonacci(int n) {
    if (n <= 1) {
        return n;
    }
    return fibonacci(n - 1) + fibonacci(n - 2);
}

string int_to_string(int n) {
    return (string) n;
}

static void create() {
    int i;
    int result;

    for (i = 0; i <= 10; i++) {
        result = fibonacci(i);
        write("fib(" + int_to_string(i) + ") = " + int_to_string(result) + "\n");
    }
}

Contribute — propose a file extension

Tell us where to find evidence about DGD (mapped to pl/dgd). 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/DGD/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← DG/L DGOL →