GOAL
1 program
Added 2026-02-06T10:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Game-Oriented Assembly Lisp
Provenance: commit d2268fb3e7 · authored 2026-02-06T09:45:20+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/goalRelated languages
LLM-contributed programs
Factorial Function
Provenance: commit d2268fb3e7 · authored 2026-02-06T09:45:20+01:00 · agent claude-code · model sonnet · WebSearch disabled
;; Simple GOAL example - factorial function
(defun factorial ((n int)) int
(if (= n 0)
1
(* n (factorial (- n 1)))
)
)
;; Calculate and print factorial of 5
(let ((result (factorial 5)))
(format #t "Factorial of 5 is ~D~%" result)
)
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.)