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/darkRelated languages
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
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.)