Liskell
1 program
Added 2026-02-26T17:25:31Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: Haskell Lisp
Provenance: commit 060c13a1c7 · authored 2026-02-26T18:25:58+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Factorial
Provenance: commit 060c13a1c7 · authored 2026-02-26T18:25:58+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
;;;; This is the first Liskell program ever.
(defmodule Main
(main) ())
(define (fact n)
(case (== n 0)
((True) 1)
(False (* n (Main.fact (- n 1))))))
(define (main)
(print (fact 12)))