BYOND

1 program Added 2026-03-11T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: DM, Dream Maker
Provenance: commit c7c7bc4743 · authored 2026-03-11T22:43:46+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

5 sources · pl_id: pl/dm
LLM (this repo) · 1PldbLinguistHyperpolyglotRosettacode

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
.dmlinguistprimary3.9M files

Related languages

Dream Maker (0.73)DM (0.65)DreamMaker (0.54)DreamBerd (0.16)Make (0.12)

LLM-contributed programs

FizzBuzz

Provenance: commit c7c7bc4743 · authored 2026-03-11T22:43:46+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.dm · license: Public Domain · added: 2026-03-11T10:00:00Z
// FizzBuzz in BYOND DM (Dream Maker)

/world/New()
    var/i
    for(i = 1, i <= 30, i++)
        if(!(i % 15))
            world << "FizzBuzz"
        else if(!(i % 3))
            world << "Fizz"
        else if(!(i % 5))
            world << "Buzz"
        else
            world << i
    del(world)

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 BYOND (mapped to pl/dm). 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/BYOND/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Bynary ByT →