Hazel

1 program Added 2026-02-09T12:00:00Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 298bc2c0ea · authored 2026-02-09T22:15:33+01:00 · agent claude-code · model opus

Sources mentioning this language

2 sources · pl_id: pl/hazel
LLM (this repo) · 1Pldb

Related languages

Haxl (0.30)HAML (0.27)HardCaml (0.21)ABEL (0.18)Ciel (0.18)

LLM-contributed programs

Fibonacci and Factorial with Map

Provenance: commit 298bc2c0ea · authored 2026-02-09T22:15:33+01:00 · agent claude-code · model opus · WebSearch disabled
code.hazel · license: MIT · added: 2026-02-09T12:00:00Z
let rec fib : Int -> Int =
  fun n ->
    if n < 2
    then n
    else fib(n - 1) + fib(n - 2)
in

let rec factorial : Int -> Int =
  fun n ->
    if n == 0
    then 1
    else n * factorial(n - 1)
in

let rec map : (Int -> Int) -> [Int] -> [Int] =
  fun f xs ->
    case xs
    | [] => []
    | hd :: tl => f(hd) :: map(f, tl)
    end
in

let numbers : [Int] = 1 :: 2 :: 3 :: 4 :: 5 :: 6 :: 7 :: 8 :: 9 :: 10 :: [] in
let fibs = map(fib, numbers) in
let facts = map(factorial, numbers) in

(fibs, facts)

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 Hazel (mapped to pl/hazel). 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/Hazel/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← haystaq hbasic →