{"id":13837338,"url":"https://github.com/Grubba27/write-yourself-a-scheme","last_synced_at":"2025-07-10T18:32:58.183Z","repository":{"id":65934503,"uuid":"596282301","full_name":"Grubba27/write-yourself-a-scheme","owner":"Grubba27","description":"a scheme interpreter written in go based on eatonphil twitch stream.","archived":false,"fork":false,"pushed_at":"2023-05-30T21:48:31.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-02T22:19:01.064Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Grubba27.png","metadata":{"files":{"readme":"README.MD","changelog":null,"contributing":null,"funding":null,"license":null,"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-02-01T21:07:29.000Z","updated_at":"2023-05-30T22:00:34.000Z","dependencies_parsed_at":"2024-05-30T03:15:28.911Z","dependency_job_id":"b0b2c50c-1f35-4462-b036-b88cf7d996eb","html_url":"https://github.com/Grubba27/write-yourself-a-scheme","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Grubba27/write-yourself-a-scheme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grubba27%2Fwrite-yourself-a-scheme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grubba27%2Fwrite-yourself-a-scheme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grubba27%2Fwrite-yourself-a-scheme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grubba27%2Fwrite-yourself-a-scheme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Grubba27","download_url":"https://codeload.github.com/Grubba27/write-yourself-a-scheme/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grubba27%2Fwrite-yourself-a-scheme/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264631213,"owners_count":23640941,"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-08-04T15:01:06.718Z","updated_at":"2025-07-10T18:32:57.925Z","avatar_url":"https://github.com/Grubba27.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# Write your own Scheme interpreter in Go\n\nThis is a Repo that was build alongside [eatonphil](https://www.twitch.tv/eatonphil) from the twitch stream.\n\n[Part 1: A lexer](https://www.youtube.com/watch?v=lZNhZI-dN9k)\n[Part 2: Parsing](https://www.youtube.com/watch?v=5ttFEPQopXc)\n[Part 3: AST walking interpreter](https://www.youtube.com/watch?v=YwmGcverSHI)\n[Part 4: Cleanup and Fibonacci](https://www.youtube.com/watch?v=skDhTWILH8I)\n\nGive him a star on the original [repo](https://github.com/eatonphil/livescheme) and follow him on twitch if you like the content. \n\n```bash\n$ go mod tidy\n$ go test\n$ go build\n$ cat examples/fib.scm\n(fn fib (a)\n      (if (\u003c a 2)\n\t  a\n\t  (add (fib (sub a 1)) (fib (sub a 2)))))\n\n(fib 11)\n$ ./livescheme examples/fib.scm\n89\n\n```\n\n## Missing features\n\n- [ ] Constant propagation\n- [ ] More keywords\n- [ ] Types(static type checking) \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGrubba27%2Fwrite-yourself-a-scheme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FGrubba27%2Fwrite-yourself-a-scheme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGrubba27%2Fwrite-yourself-a-scheme/lists"}