Machiavelli

1 program Added 2026-03-11T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit c7547a45eb · authored 2026-03-11T20:49:43+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

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

Related languages

Monicelli (0.26)Lolli (0.18)Mochi (0.18)MLISP (0.16)MACRO-8 (0.16)

LLM-contributed programs

Employee Database Query

Provenance: commit c7547a45eb · authored 2026-03-11T20:49:43+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.ml · added: 2026-03-11T10:00:00Z
(* Machiavelli: A polymorphic database programming language
   Example of record polymorphism and comprehension syntax *)

val employees =
  [{name = "Alice", dept = "CS",   salary = 50000},
   {name = "Bob",   dept = "Math", salary = 45000},
   {name = "Carol", dept = "CS",   salary = 55000},
   {name = "Dave",  dept = "Math", salary = 48000}];

(* Select employees by department using comprehension syntax *)
fun select_dept d table =
  [row | row <- table, row.dept = d];

(* Sum all salary fields using record polymorphism *)
fun sum_salary [] = 0
  | sum_salary (r :: rs) = r.salary + sum_salary rs;

val cs_employees = select_dept "CS" employees;
val cs_salary_total = sum_salary cs_employees;

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 Machiavelli (mapped to pl/machiavelli). 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/Machiavelli/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Mach macintosh-common-lisp →