{"id":22375849,"url":"https://github.com/stylewarning/recur","last_synced_at":"2026-03-19T22:36:54.652Z","repository":{"id":236852846,"uuid":"625692089","full_name":"stylewarning/recur","owner":"stylewarning","description":null,"archived":false,"fork":false,"pushed_at":"2023-04-09T22:23:07.000Z","size":2,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-27T08:59:09.331Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Common Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stylewarning.png","metadata":{"files":{"readme":"README.txt","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-09T22:09:13.000Z","updated_at":"2023-10-31T18:09:32.000Z","dependencies_parsed_at":"2024-04-29T00:08:22.468Z","dependency_job_id":"377db337-03e8-47c4-847a-aad9e7449968","html_url":"https://github.com/stylewarning/recur","commit_stats":null,"previous_names":["stylewarning/recur"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stylewarning/recur","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stylewarning%2Frecur","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stylewarning%2Frecur/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stylewarning%2Frecur/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stylewarning%2Frecur/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stylewarning","download_url":"https://codeload.github.com/stylewarning/recur/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stylewarning%2Frecur/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28231794,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2026-01-07T02:00:05.975Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-04T21:27:58.443Z","updated_at":"2026-01-07T03:09:34.274Z","avatar_url":"https://github.com/stylewarning.png","language":"Common Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"                                RECUR\n\n               A simple library for Scheme's named LET.\n\n\nRECUR is a simple Lisp alternative Scheme's \"named-LET\". Scheme allows\none to iterate like the following:\n\n(define (factorial n)\n  (let fact ((n    n)\n             (prod 1))\n    (if (zero? n)\n        prod\n        (fact (- n 1)\n              (* n prod)))))\n\nThis is a useful idiom for Lisp as well. With this library, it is written\n\n(defun factorial (n)\n  (recur fact ((n    n)\n               (prod 1))\n    (if (zerop n)\n        prod\n        (fact (1- n)\n              (* n prod)))))          \n\nThis library exports a single macro, RECUR:RECUR, which is a\nreplacement for Scheme's named-LET. The only caveat is that tail\nrecursion is not strictly supported, though many implementations do\nsupport it (with some combination of OPTIMIZE declarations).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstylewarning%2Frecur","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstylewarning%2Frecur","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstylewarning%2Frecur/lists"}