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/lamlRelated languages
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
(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.)