{"id":20719269,"url":"https://github.com/tom-weatherhead/atrocity","last_synced_at":"2025-08-17T03:40:48.152Z","repository":{"id":58153738,"uuid":"527023563","full_name":"tom-weatherhead/atrocity","owner":"tom-weatherhead","description":"A Scheme interpreter implemented in C.","archived":false,"fork":false,"pushed_at":"2022-10-05T22:50:21.000Z","size":465,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-11T07:49:31.834Z","etag":null,"topics":["c","functional-programming","garbage-collection","repl","scheme","scheme-interpreter","scripting-language"],"latest_commit_sha":null,"homepage":"","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/tom-weatherhead.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":"2022-08-20T19:41:11.000Z","updated_at":"2022-09-10T20:35:58.000Z","dependencies_parsed_at":"2023-01-19T07:31:03.595Z","dependency_job_id":null,"html_url":"https://github.com/tom-weatherhead/atrocity","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tom-weatherhead/atrocity","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tom-weatherhead%2Fatrocity","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tom-weatherhead%2Fatrocity/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tom-weatherhead%2Fatrocity/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tom-weatherhead%2Fatrocity/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tom-weatherhead","download_url":"https://codeload.github.com/tom-weatherhead/atrocity/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tom-weatherhead%2Fatrocity/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270803531,"owners_count":24648688,"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":"2025-08-17T02:00:09.016Z","response_time":129,"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":["c","functional-programming","garbage-collection","repl","scheme","scheme-interpreter","scripting-language"],"created_at":"2024-11-17T03:16:27.906Z","updated_at":"2025-08-17T03:40:48.111Z","avatar_url":"https://github.com/tom-weatherhead.png","language":"C","readme":"# atrocity\nA Scheme interpreter implemented in C.\n\n[![watchers][watchers-badge-image]][watchers-url]\n[![stars][stars-badge-image]][stars-url]\n[![issues][issues-badge-image]][issues-url]\n[![forks][forks-badge-image]][forks-url]\n[![contributors][contributors-badge-image]][contributors-url]\n[![branches][branches-badge-image]][branches-url]\n[![releases][releases-badge-image]][releases-url]\n[![commits][commits-badge-image]][commits-url]\n[![last commit][last-commit-badge-image]][last-commit-url]\n[![license][license-badge-image]][license-url]\n\n## To compile and run atrocity\n\nFirst, ensure that gcc and make are installed.\n\nAfter cloning this repository, cd into its directory and do this:\n\n```sh\n$ cd src\n$ make\n$ ./atrocity\n```\n\nFrom the src directory, you can do the following:\n\nTo do a full rebuild and run the built-in tests:\n\n```sh\n$ make clean \u0026\u0026 make \u0026\u0026 make test\n```\n\nTo run a script: E.g.:\n\n```sh\n$ ./atrocity ../scripts/test001.scm\n```\n\nTo enter the read-eval-print loop (REPL) :\n\n```sh\n$ ./atrocity\n```\n\nExit the REPL by typing 'exit', 'quit', or 'bye'.\n\n## License\n[MIT](https://choosealicense.com/licenses/mit/)\n\n[watchers-badge-image]: https://badgen.net/github/watchers/tom-weatherhead/atrocity\n[watchers-url]: https://github.com/tom-weatherhead/atrocity/watchers\n[stars-badge-image]: https://badgen.net/github/stars/tom-weatherhead/atrocity\n[stars-url]: https://github.com/tom-weatherhead/atrocity/stargazers\n[issues-badge-image]: https://badgen.net/github/issues/tom-weatherhead/atrocity\n[issues-url]: https://github.com/tom-weatherhead/atrocity/issues\n[forks-badge-image]: https://badgen.net/github/forks/tom-weatherhead/atrocity\n[forks-url]: https://github.com/tom-weatherhead/atrocity/network/members\n[contributors-badge-image]: https://badgen.net/github/contributors/tom-weatherhead/atrocity\n[contributors-url]: https://github.com/tom-weatherhead/atrocity/graphs/contributors\n[branches-badge-image]: https://badgen.net/github/branches/tom-weatherhead/atrocity\n[branches-url]: https://github.com/tom-weatherhead/atrocity/branches\n[releases-badge-image]: https://badgen.net/github/releases/tom-weatherhead/atrocity\n[releases-url]: https://github.com/tom-weatherhead/atrocity/releases\n[commits-badge-image]: https://badgen.net/github/commits/tom-weatherhead/atrocity\n[commits-url]: https://github.com/tom-weatherhead/atrocity/commits/master\n[last-commit-badge-image]: https://badgen.net/github/last-commit/tom-weatherhead/atrocity\n[last-commit-url]: https://github.com/tom-weatherhead/atrocity\n[license-badge-image]: https://img.shields.io/github/license/mashape/apistatus.svg\n[license-url]: https://github.com/tom-weatherhead/thaw-grammar/blob/master/LICENSE\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftom-weatherhead%2Fatrocity","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftom-weatherhead%2Fatrocity","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftom-weatherhead%2Fatrocity/lists"}