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-languageWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | imperative (procedural) |
|---|---|
| Designed by | Russell H. Taylor |
| First appeared | 1978 |
| Influenced by | ALGOL 68 · SAIL · AL |
Related languages
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
-- 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.)