Dark

1 program Added 2026-02-10T12:00:00Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: Darklang
Provenance: commit 90a94a9b18 · authored 2026-02-10T12:46:05+01:00 · agent claude-code · model opus

Sources mentioning this language

2 sources · pl_id: pl/dark
LLM (this repo) · 1Esolang

Related languages

Darklang (0.71)Dart (0.41)D (0.31)D2 (0.29)rk (0.28)

LLM-contributed programs

FizzBuzz with Greeting and Factorial

Provenance: commit 90a94a9b18 · authored 2026-02-10T12:46:05+01:00 · agent claude-code · model opus · WebSearch disabled
code.dark · license: MIT · added: 2026-02-10T12:00:00Z
let greet (name: String) : String =
  if name == ""
  then "Hello, World!"
  else "Hello, " ++ name ++ "!"

let factorial (n: Int) : Int =
  if n <= 1
  then 1
  else n * (factorial (n - 1))

let fizzbuzz (n: Int) : String =
  if Int.remainder n 15 == Ok 0
  then "FizzBuzz"
  else if Int.remainder n 3 == Ok 0
  then "Fizz"
  else if Int.remainder n 5 == Ok 0
  then "Buzz"
  else Int.toString n

let main =
  let message = greet "Dark"
  let fact5 = factorial 5
  let results = List.map (List.range 1 21) (fun n -> fizzbuzz n)
  (message, fact5, results)

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 Dark (mapped to pl/dark). 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/Dark/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Darcs Patch DarkBASIC →