{"id":18260069,"url":"https://github.com/roppa/lisp","last_synced_at":"2025-07-07T14:05:15.882Z","repository":{"id":146092736,"uuid":"134580788","full_name":"roppa/lisp","owner":"roppa","description":"Build your own Lisp","archived":false,"fork":false,"pushed_at":"2018-05-31T19:48:38.000Z","size":4,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-14T18:36:29.102Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/roppa.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,"publiccode":null,"codemeta":null}},"created_at":"2018-05-23T14:21:19.000Z","updated_at":"2018-05-31T19:48:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"87c0e06a-60a5-4bb0-8a5e-3793fcd9578a","html_url":"https://github.com/roppa/lisp","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/roppa%2Flisp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roppa%2Flisp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roppa%2Flisp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roppa%2Flisp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/roppa","download_url":"https://codeload.github.com/roppa/lisp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247947825,"owners_count":21023058,"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":[],"created_at":"2024-11-05T10:41:54.312Z","updated_at":"2025-04-08T23:44:42.812Z","avatar_url":"https://github.com/roppa.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Lisp\n\nI'm going through 'build your own Lisp' and these are some of my notes.\n\n## Definitions\n\n  \u003cdl\u003e\n    \u003cdt\u003efunction definition\u003c/dt\u003e\n    \u003cdd\u003efunctions do things, take things in, give things back\u003c/dd\u003e\n    \u003cdt\u003estructure definition\u003c/dt\u003e\n    \u003cdd\u003ecustom data types\u003c/dd\u003e\n    \u003cdt\u003emain\u003c/dt\u003e\n    \u003cdd\u003ea c program always starts from the main function\u003c/dd\u003e\n  \u003c/dl\u003e\n\n## C\n\nA program in C consists of only functions and structure definitions.\n\n### Compiling\n\nTo compile run ```cc filename.c```\n\nThis creates an a.out file. To execute run ```./a.out```\n\nTo specify a name instead of the default a.out, use `-o`. `-std=c99` specifies the version.\n\n```\ncc -std=c99 -Wall hello.c -o hello_world\n```\n\nRun with `./c/hello/hello_world`.\n\n## Examples\n\nUnder `/c` is my example c code.\n\n## Debugging\n\n- [lldb](https://lldb.llvm.org/)\n\n## Testing\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froppa%2Flisp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froppa%2Flisp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froppa%2Flisp/lists"}