{"id":13442738,"url":"https://github.com/thephoeron/let-over-lambda","last_synced_at":"2026-01-10T05:02:42.578Z","repository":{"id":41519405,"uuid":"13628867","full_name":"thephoeron/let-over-lambda","owner":"thephoeron","description":"Doug Hoyte's \"Production\" version of macros from Let Over Lambda, ready for ASDF and Quicklisp.","archived":false,"fork":false,"pushed_at":"2023-08-02T18:09:40.000Z","size":62,"stargazers_count":133,"open_issues_count":5,"forks_count":25,"subscribers_count":20,"default_branch":"master","last_synced_at":"2024-10-28T05:59:41.845Z","etag":null,"topics":["common-lisp","macros"],"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/thephoeron.png","metadata":{"files":{"readme":"README.md","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}},"created_at":"2013-10-16T19:22:48.000Z","updated_at":"2024-10-27T20:14:58.000Z","dependencies_parsed_at":"2024-04-13T14:38:43.113Z","dependency_job_id":null,"html_url":"https://github.com/thephoeron/let-over-lambda","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thephoeron%2Flet-over-lambda","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thephoeron%2Flet-over-lambda/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thephoeron%2Flet-over-lambda/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thephoeron%2Flet-over-lambda/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thephoeron","download_url":"https://codeload.github.com/thephoeron/let-over-lambda/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244639845,"owners_count":20485940,"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","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":["common-lisp","macros"],"created_at":"2024-07-31T03:01:49.894Z","updated_at":"2026-01-10T05:02:42.232Z","avatar_url":"https://github.com/thephoeron.png","language":"Common Lisp","funding_links":[],"categories":["Common Lisp"],"sub_categories":[],"readme":"# LET-OVER-LAMBDA\n\n[![Build Status](https://circleci.com/gh/thephoeron/let-over-lambda.svg?style=shield)](https://circleci.com/gh/thephoeron/let-over-lambda)\n[![Build Status](https://travis-ci.org/thephoeron/let-over-lambda.svg?branch=master)](https://travis-ci.org/thephoeron/let-over-lambda)\n[![Coverage Status](https://coveralls.io/repos/thephoeron/let-over-lambda/badge.svg?branch=master)](https://coveralls.io/r/thephoeron/let-over-lambda)\n[![Quicklisp](https://quickdocs.org/badge/let-over-lambda.svg)](https://quickdocs.org/let-over-lambda/)\n[![BSD Simplified License](https://img.shields.io/badge/license-BSD%20Simplified-blue.svg)](./LICENSE)\n[![Join the chat at https://gitter.im/thephoeron/let-over-lambda](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/thephoeron/let-over-lambda?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\nDoug Hoyte's \"Production\" version of macros from Let Over Lambda, including community updates; available from Quicklisp.\n\nRead more about the book and code at: http://letoverlambda.com\n\n## News \u0026amp; Updates\n\n##### 8/02/2023\n\nExtend LOL-SYNTAX named-readtable to include FARE-QUASIQUOTE.\n\n##### 3/19/2015\n\nAdd symbols for anaphoric macro internals, `IT`, `THIS`, and `SELF` to package exports for better end-user experience.  Will be available in April 2015 release of Quicklisp.\n\n##### 8/14/2014\n\nIssue with incompatible change to backquote syntax in SBCL 1.2.2 resolved; tested against and builds on SBCL 1.2.0-1 and 1.2.2.  Will be available in the August release of Quicklisp.\n\n##### 12/18/2013\n\nNow available in the December 2013 distribution of Quicklisp\n\n## Usage\n\nMake sure you have the latest Quicklisp distribution, then include it as a dependency in your system definition, or from the REPL evaluate `(ql:quickload \"let-over-lambda\")`.\n\n```lisp\n(ql:quickload \"let-over-lambda\")\n(lol:flatten '((A . B) (C . D) (E . (F G H (I . J) . K))))\n=\u003e (A B C D E F G H I J K)\n```\n\nLET-OVER-LAMBDA now uses the `named-readtables` library instead of modifying the global readtable. To use LOL reader macros in your Lisp source files, you will have to add both `let-over-lambda` and `named-readtables` to your project dependencies, and the following line after your call to `in-package`, in every source file you wish to use LOL syntax:\n\n```lisp\n(named-readtables:in-readtable lol:lol-syntax)\n```\n\n## Authors and Contributors\n\n- [Doug Hoyte](https://github.com/hoytech)\n- [\"the Phoeron\" Colin J.E. Lupton](https://github.com/thephoeron)\n- [Jorge Gajon](https://github.com/gajon)\n- [André Miranda](https://github.com/EuAndreh/)\n\n## License\n\nCopyright \u0026copy; 2008\u0026ndash;2023, the Authors. Released under the BSD License\n(BSD Simplified). Please see [`LICENSE`](./LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthephoeron%2Flet-over-lambda","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthephoeron%2Flet-over-lambda","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthephoeron%2Flet-over-lambda/lists"}