3APL

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

Sources mentioning this language

4 sources · pl_id: pl/3apl
LLM (this repo) · 1PldbWikipediaWikidata · Q4636211

Related languages

2APL (0.60)SARL (0.57)Apl (0.53)Piet (0.48)J (0.47)

LLM-contributed programs

Blocks world agent

Provenance: commit 9741d77e6b · authored 2026-03-11T20:49:29+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.3apl · added: 2026-03-11T10:00:00Z
BELIEFBASE:
  color(a, red),
  color(b, blue),
  ontable(a),
  ontable(b),
  clear(a),
  clear(b)

GOALBASE:
  on(a, b)

PC-RULES:
  on(X, Y) / not on(X, Y) |>
    if clear(X) and clear(Y)
    then [pickup(X), putdown(X, Y)]
    else []

CAPABILITIES:
  pickup(X) / clear(X) and ontable(X) |>
    { not ontable(X), holding(X), not clear(X) }
  putdown(X, Y) / holding(X) and clear(Y) |>
    { not holding(X), on(X, Y), clear(X), not clear(Y) }

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 3APL (mapped to pl/3apl). 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/3APL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← 3900 3Byte2Jump →