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/dmExtensions 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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.dm | linguist | primary | 3.9M files |
Related languages
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
// 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.)