{"id":13776363,"url":"https://github.com/chicode/lisa","last_synced_at":"2026-06-22T16:31:28.418Z","repository":{"id":62418397,"uuid":"183151660","full_name":"chicode/lisa","owner":"chicode","description":"A Lisp dialect designed for codingworkshops","archived":false,"fork":false,"pushed_at":"2019-06-01T14:33:13.000Z","size":128,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-06-12T01:32:08.912Z","etag":null,"topics":["elm","lisp","lisp-dialect","parser"],"latest_commit_sha":null,"homepage":"","language":"Elm","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chicode.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}},"created_at":"2019-04-24T05:03:17.000Z","updated_at":"2021-08-06T01:43:04.000Z","dependencies_parsed_at":"2022-11-01T16:46:17.939Z","dependency_job_id":null,"html_url":"https://github.com/chicode/lisa","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/chicode/lisa","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chicode%2Flisa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chicode%2Flisa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chicode%2Flisa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chicode%2Flisa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chicode","download_url":"https://codeload.github.com/chicode/lisa/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chicode%2Flisa/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34657892,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-22T02:00:06.391Z","response_time":106,"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":["elm","lisp","lisp-dialect","parser"],"created_at":"2024-08-03T18:00:23.972Z","updated_at":"2026-06-22T16:31:28.393Z","avatar_url":"https://github.com/chicode.png","language":"Elm","funding_links":[],"categories":["Languages"],"sub_categories":["Interpreters"],"readme":"# Lisa\n\n\u003e A Lisp dialect designed for codingworkshops\n\n## Example\n\n```lisp\n(defunc fib-recurse (n)\n    (var a 0) (var b 1) (var f 1)\n    (defunc calc-fib (i)\n        (if (\u003c= i n)\n            (do\n                (set f (+ a b))\n                (set a b)\n                (set b f)\n                (calc-fib (+ i 1)))\n            f))\n    (calc-fib 2))\n(defunc fib-while (n)\n    (var a 0) (var b 1) (var f 1)\n    (var i 2)\n    (while (\u003c= i n)\n        (set f (+ a b))\n        (set a b)\n        (set b f)\n        (set i (+ i 1))\n        f))\n(= (fib-recurse 10) (fib-while 10) 55)\n```\n\n## Running examples\n\n```sh\ncd examples\nelm reactor\n```\n\nNavigate to http://localhost:8000/Main.elm\n\n## Usage\n\n```elm\nimport Lisa\n\ndoParse source =\n    case Lisa.processString source of\n        Ok program -\u003e\n            -- do something with program\n\n        Err err -\u003e\n          Err err\n```\n\n## License\n\nThis project is licensed under the GPL v3. See the [LICENSE](LICENSE) file for\nmore details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchicode%2Flisa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchicode%2Flisa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchicode%2Flisa/lists"}