AML

1 program Added 2026-02-16T10:30:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: A Manufacturing Language
Provenance: commit 19cc079b51 · authored 2026-02-16T15:16:36+01:00 · agent claude-code · model sonnet

Sources mentioning this language

3 sources · pl_id: pl/a-manufacturing-language
LLM (this repo) · 1WikipediaWikidata · Q295195

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsimperative (procedural)
Designed byRussell H. Taylor
First appeared1978
Influenced byALGOL 68 · SAIL · AL

Related languages

Apl (0.35)Turing (0.35)AMPL (0.34)JML (0.32)Factor (0.30)

LLM-contributed programs

Pick and Place Robot Program

Provenance: commit 19cc079b51 · authored 2026-02-16T15:16:36+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.aml · added: 2026-02-16T10:30:00Z
-- Simple AML robot program
-- Pick and place operation

PROGRAM PICKPLACE;

-- Define positions
VAR homepos, pickpos, placepos: POSITION;

-- Initialize positions
homepos := POSITION(0.0, 0.0, 100.0, 0.0, 0.0, 0.0);
pickpos := POSITION(200.0, 100.0, 50.0, 0.0, 0.0, 90.0);
placepos := POSITION(-200.0, 100.0, 50.0, 0.0, 0.0, -90.0);

-- Main program logic
BEGIN
  -- Move to home position
  MOVE homepos;

  -- Open gripper
  OPEN GRIPPER;

  -- Move to pick position
  MOVE pickpos;

  -- Close gripper to grasp object
  CLOSE GRIPPER;

  -- Lift object
  MOVE POSITION(pickpos.x, pickpos.y, pickpos.z + 50.0,
                pickpos.pitch, pickpos.roll, pickpos.yaw);

  -- Move to place position
  MOVE placepos;

  -- Open gripper to release object
  OPEN GRIPPER;

  -- Return to home position
  MOVE homepos;
END;

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 AML (mapped to pl/a-manufacturing-language). 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/AML/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← AmitabhC Amnesia →