{"id":26610512,"url":"https://github.com/iwillspeak/feersum","last_synced_at":"2025-09-03T02:34:08.662Z","repository":{"id":37539004,"uuid":"223348583","full_name":"iwillspeak/feersum","owner":"iwillspeak","description":"A Scheme compiler that targets .NET written in F#","archived":false,"fork":false,"pushed_at":"2025-06-13T13:20:43.000Z","size":3732,"stargazers_count":28,"open_issues_count":11,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-13T14:31:40.820Z","etag":null,"topics":["compiler","hacktoberfest","lisp","livestream","programming-language","repl","scheme","scheme-compiler","scheme-programming-language"],"latest_commit_sha":null,"homepage":"http://playlist.feersum-scheme.net","language":"F#","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/iwillspeak.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2019-11-22T07:33:04.000Z","updated_at":"2025-06-13T13:20:47.000Z","dependencies_parsed_at":"2025-04-10T00:05:08.480Z","dependency_job_id":"0c689792-0b06-4b2b-b7a2-bbb65a152224","html_url":"https://github.com/iwillspeak/feersum","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/iwillspeak/feersum","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillspeak%2Ffeersum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillspeak%2Ffeersum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillspeak%2Ffeersum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillspeak%2Ffeersum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iwillspeak","download_url":"https://codeload.github.com/iwillspeak/feersum/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillspeak%2Ffeersum/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273381303,"owners_count":25095293,"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-09-03T02:00:09.631Z","response_time":76,"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":["compiler","hacktoberfest","lisp","livestream","programming-language","repl","scheme","scheme-compiler","scheme-programming-language"],"created_at":"2025-03-24T01:48:30.224Z","updated_at":"2025-09-03T02:34:08.596Z","avatar_url":"https://github.com/iwillspeak.png","language":"F#","readme":"\n\u003cp align=\"center\"\u003e\n\t\u003cimg src=\"docs/Logo_colour_sm.png\" alt=\"Ant in a box\"  /\u003e\n\u003c/p\u003e\n\u003ch1 align=\"center\"\u003e\u003csamp\u003e(feersum . scheme)\u003c/samp\u003e\u003c/h1\u003e\n\u003cp align=\"center\"\u003e\n\u003ca href=https://dev.azure.com/iwillspeak/GitHub/_build/latest?definitionId=4\u0026branchName=main\"\u003e\u003cimg alt=\"Build Status\" src=\"https://dev.azure.com/iwillspeak/GitHub/_apis/build/status/iwillspeak.feersum?branchName=main\" /\u003e\u003c/a\u003e\n\u003ca href=\"https://www.nuget.org/packages/Feersum\"\u003e\u003cimg alt=\"Feersum on NuGet.org\" src=\"https://buildstats.info/nuget/Feersum?includePreReleases=true\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003e Wots in that thare box yoor holdin?\n\nA Scheme compiler for .NET written in F#. Progress\n[livestreamed on Twitch][twitch], [catchup on YouTube][yt]\n\n# Contributing\n\nFeersum is in active development. Contributions are welcome. See\n[CONTRIBUTING][contributing] for more imformation. For an introduction to\nbuiding and testing the compiler, as well as a discussion of the high-level\nstructure check out the [DEVGUIDE][devguide].\n\n# Getting Started using Feersum\n\nFeersum is distributed as a .NET tool, and MSBuild SDK. For quick use with an\ninteractive REPL and simple compilation the tool can be installed directly:\n\n```bash\n$ dotnet tool install -g Feersum\n```\n\nThen from the command line `feersum-scheme` should launch a Scheme REPL. Type in\nScheme code to have it compiled and evaluated. To compile a file into a simple\nexecutable run `feersum-scheme yourfile.scm`. This will produce a new file\n`yourfile.exe` which can then be run by `dotnet yourfile.exe`.\n\nTo create an SDK style scheme project and build it with `dotnet build` first\ninstall the `Feersum.Templates` template pack:\n\n```\n$ dotnet new install Feersum.Templates::*\n```\n\nThen from the command line:\n\n```\n$ dotnet new scm-console\n```\n\nThis generates a new console application project in the current directory.\nCompile and run with `dotnet build` and `dotnet run` as usual! Other templates\nare available:\n\n * `scm-classlib` - Generate a .NET class library project.\n * `scmlib` - Generate s Scheme library definition file.\n\n# Planned Features\n\nThis is a rough list of interesting features I'd like to implement in this project,\nand is by no means a guarantee or a strict roadmap.\n\n * [ ] Implement [all special forms](docs/special-forms.md)\n * [ ] Support [all value types](docs/values.md)\n * [ ] Support [all standard procedures](docs/standard-procedures.md)\n * [x] Macros support.\n   * [ ] Macro Hygene (#13).\n * [ ] Support for Scheme exceptions and `guard`.\n * [ ] Full numeric tower support.\n * [ ] Interop with other .NET assemblies.\n * [ ] Multi-statement support in the REPL.\n * [ ] Debugging support\n   * [x] Bound tree contains sequence points for debuging\n   * [x] Stop at entry, and step in.\n   * [ ] Debuggable REPL. Embedded source in PDBs?\n * [x] MSBUILD SDK support so `.scmproj` can be defined.\n   * [x] Proper support for different target frameworks\n * [x] Scheme library and import support.\n * [x] Standard library \u0026 builtins from a separate assembly.\n * [x] Quoted expressions.\n * [x] Diagnostics with position\n    * [x] Expose position information in parser.\n    * [x] Handle multiple parser errors.\n    * [x] Turn errors in `bind` into diagnotics too.\n * [x] Perform on-demand compilation \u0026 emit to in-memory assembly for REPL.\n\nFuture themes of development are also tracked with\n[`Roadmap` issues][roadmap_issues] on GitHub.\n \n  [twitch]: https://twitch.tv/iwillspeak\n  [yt]: https://www.youtube.com/playlist?list=PLCum1jXOlhoRCBewbQD8ELE7B_7EWnWaO\n  [contributing]: CONTRIBUTING.md\n  [devguide]: DEVGUIDE.md\n  [exmaple_gist]: https://gist.github.com/iwillspeak/efc9342c63c07a2a763dd814f555f7ee\n  [roadmap_issues]: https://github.com/iwillspeak/feersum/issues?q=is%3Aopen+is%3Aissue+label%3ARoadmap\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiwillspeak%2Ffeersum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiwillspeak%2Ffeersum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiwillspeak%2Ffeersum/lists"}