{"id":28174567,"url":"https://github.com/sanelli/brainfuck","last_synced_at":"2026-04-12T00:03:24.703Z","repository":{"id":204128176,"uuid":"710774979","full_name":"sanelli/brainfuck","owner":"sanelli","description":"Collection of brainfuck interpreters for various languages (Go, C#, Python, C++, Pascal, Ada, C, D, Rust)","archived":false,"fork":false,"pushed_at":"2024-05-14T21:55:25.000Z","size":72,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-15T22:16:50.970Z","etag":null,"topics":["ada","brainfuck","brainfuck-interpreter","c","cpp","csharp","dlang","go","pascal","python","rust","rust-lang"],"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/sanelli.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":"2023-10-27T12:14:11.000Z","updated_at":"2024-05-14T21:56:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"9b178646-3571-4167-962a-e503a8ca2228","html_url":"https://github.com/sanelli/brainfuck","commit_stats":null,"previous_names":["sanelli/brainfuck"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sanelli/brainfuck","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanelli%2Fbrainfuck","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanelli%2Fbrainfuck/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanelli%2Fbrainfuck/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanelli%2Fbrainfuck/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sanelli","download_url":"https://codeload.github.com/sanelli/brainfuck/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanelli%2Fbrainfuck/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278565511,"owners_count":26007757,"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-10-06T02:00:05.630Z","response_time":65,"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":["ada","brainfuck","brainfuck-interpreter","c","cpp","csharp","dlang","go","pascal","python","rust","rust-lang"],"created_at":"2025-05-15T22:16:43.672Z","updated_at":"2026-04-12T00:03:24.696Z","avatar_url":"https://github.com/sanelli.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# brainfuck\nCollection of brainfuck interpreters written in various languages.\n\n## Prerequisities\nPrerequisites can be validated by running the `Check.ps1` script, possibly with a list of languages to validate. If the parameter `-Languages` is not provided then all supported languages are cheked. In case of failures will provide a set of links to follow to help with the installation.\n\nExamples:\n```powershell\n./Scripts/Check.ps1\n./Scripts/Check.ps1 -Languages:$(\"csharp\", \"python\", \"cpp\")\n```\n\n### [C#](https://github.com/sanelli/brainfuck/tree/main/csharp)\n- [dotnet](https://dotnet.microsoft.com) 8\n\n### [Python](https://github.com/sanelli/brainfuck/tree/main/python)\n- [python](https://www.python.org) 3.11.5\n\n### [C++](https://github.com/sanelli/brainfuck/tree/main/cpp)\n- [CMake](https://cmake.org) 3.27\n- C++20 compiler (the `Check.ps1` does not validate this)\n\n### [Go](https://github.com/sanelli/brainfuck/tree/main/go)\n- [Go](https://go.dev) 1.21.3\n\n### [Pascal](https://github.com/sanelli/brainfuck/tree/main/pascal)\n- [Free pascal](https://www.freepascal.org) 3.2\n\n### [Ada](https://github.com/sanelli/brainfuck/tree/main/ada)\n- [Alire](https://alire.ada.dev) 2.0\n\n### [C](https://github.com/sanelli/brainfuck/tree/main/c)\n- [CMake](https://cmake.org) 3.27\n- C17 compiler (the `Check.ps1` does not validate this)\n\n### [D](https://github.com/sanelli/brainfuck/tree/main/d)\n- [Dub](https://dub.pm) 1.37.0\n- [dmd](https://dlang.org) 2.108.1\n\n### [Rust](https://github.com/sanelli/brainfuck/tree/main/rust)\n- [cargo](https://www.rust-lang.org) 1.78.0\n- [rustc](https://www.rust-lang.org) 1.78.0\n\n### [Erlang](https://github.com/sanelli/brainfuck/tree/main/erlang)\n- [erl](https://www.erlang.org) 16.1.2\n\n## Compile and test\n```powershell\n./Scripts/Build.ps1\n./Scripts/RunHello.ps1\n./Scripts/Test.ps1\n```\n\nEach script accepts a `-Language` parameter with a list of languages:\n```powershell\n./Scripts/Build.ps1 -Languages:$(\"csharp\", \"python\", \"cpp\")\n./Scripts/RunHello.ps1 -Languages:$(\"csharp\", \"cpp\")\n./Scripts/Test.ps1 -Languages:$(\"cpp\")\n```\n\n## Screenshots\n\n\u003cimg width=\"682\" alt=\"image\" src=\"https://github.com/sanelli/brainfuck/assets/2866041/636f62c0-0b56-426a-b4ed-f8edb18dcb96\"\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanelli%2Fbrainfuck","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsanelli%2Fbrainfuck","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanelli%2Fbrainfuck/lists"}