Delight

1 program Added 2026-03-10T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 3ff3ffb6e1 · authored 2026-03-10T15:28:11+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

HOL Light (0.28)Caml Light (0.26)Derw (0.15)BrightScript (0.15)Deluge (0.15)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit 3ff3ffb6e1 · authored 2026-03-10T15:28:11+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.dl · added: 2026-03-10T10:00:00Z
(* Fibonacci sequence in Delight *)
(* Delight - a systems programming language by Paul Andreae *)

module Fibonacci;

function Fib(n: int): int;
begin
  if n < 2 then
    Fib := n
  else
    Fib := Fib(n - 1) + Fib(n - 2)
  end if
end Fib;

procedure Main;
  var i: int;
begin
  for i := 0 to 10 do
    writeln(Fib(i))
  end for
end Main;

end Fibonacci.

Contribute — propose a file extension

Tell us where to find evidence about Delight (mapped to pl/delight). 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/Delight/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Deletion log delirium →