Amulet

1 program Added 2026-02-10T15:38:10Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: amulet, amc
Provenance: commit 17b1cf89a4 · authored 2026-02-10T16:38:46+01:00 · agent claude-code · model sonnet

Sources mentioning this language

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

Related languages

AMBIT (0.14)ABSET (0.12)Amber (0.12)Amiga BASIC (0.12)AmigaBasic (0.12)

LLM-contributed programs

Quicksort

Provenance: commit 17b1cf89a4 · authored 2026-02-10T16:38:46+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.ml · license: BSD-3-Clause · added: 2026-02-10T15:38:10Z
(* Quicksort implementation in Amulet *)
let rec quicksort = function
  | [] -> []
  | x :: xs ->
      let smaller = List.filter (fun y -> y < x) xs
      let larger = List.filter (fun y -> y >= x) xs
      quicksort smaller @ [x] @ quicksort larger

let () =
  let test_list = [3; 1; 4; 1; 5; 9; 2; 6; 5; 3; 5]
  let sorted = quicksort test_list
  print_endline (show sorted)

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 Amulet (mapped to pl/amulet). 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/Amulet/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Amtu Amycus →