LAML

1 program Added 2026-02-26T11:42:35Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: Lisp Abstracted Markup Language
Provenance: commit f34acf28ef · authored 2026-02-26T12:43:17+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

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

Related languages

YAML (0.38)GML (0.37)RuleML (0.37)MJML (0.35)PDML (0.34)

LLM-contributed programs

Factorial Table HTML Generation

Provenance: commit f34acf28ef · authored 2026-02-26T12:43:17+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
code.laml · added: 2026-02-26T11:42:35Z
(load (in-laml-dir "laml.scm"))
(use-laml-style "simple-xhtml1.0-transitional-validating")
(begin-laml)

(define (fac n)
  (if (= n 0) 1 (* n (fac (- n 1)))))

(write-xml
  '(raw prolog)
  (html
    (head
      (title "Factorials"))
    (body
      (h1 "Factorials")
      (table 'border "1"
        (tbody
          (tr
            (td "1") (td (fac 1)))
          (tr
            (td "2") (td (fac 2)))
          (tr
            (td "3") (td (fac 3)))
          (tr
            (td "4") (td (fac 4))))))))

(end-laml)

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 LAML (mapped to pl/laml). 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/LAML/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← lamina lammps-format →