{"id":15493528,"url":"https://github.com/sinclairzx81/brainfuck-rs","last_synced_at":"2026-06-20T06:31:58.396Z","repository":{"id":66034980,"uuid":"64387899","full_name":"sinclairzx81/brainfuck-rs","owner":"sinclairzx81","description":"A brainfuck interpreter implemented in Rust.","archived":false,"fork":false,"pushed_at":"2016-07-28T17:03:06.000Z","size":7,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-27T06:52:04.234Z","etag":null,"topics":["brainfuck","interpreter","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sinclairzx81.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":"2016-07-28T10:52:10.000Z","updated_at":"2017-06-22T15:00:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"a8004bcb-8b3e-4359-99bb-ea1efd0c50e8","html_url":"https://github.com/sinclairzx81/brainfuck-rs","commit_stats":{"total_commits":5,"total_committers":1,"mean_commits":5.0,"dds":0.0,"last_synced_commit":"25ec41f7a933c378d06cabbdafc93724848f4ec3"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sinclairzx81/brainfuck-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sinclairzx81%2Fbrainfuck-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sinclairzx81%2Fbrainfuck-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sinclairzx81%2Fbrainfuck-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sinclairzx81%2Fbrainfuck-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sinclairzx81","download_url":"https://codeload.github.com/sinclairzx81/brainfuck-rs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sinclairzx81%2Fbrainfuck-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34560265,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"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":["brainfuck","interpreter","rust"],"created_at":"2024-10-02T08:07:49.108Z","updated_at":"2026-06-20T06:31:58.331Z","avatar_url":"https://github.com/sinclairzx81.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# brainfuck-rs\n\na brainfuck interpreter in rust.\n\n```rust\nuse brainfuck::Program;\n\nfn main() {\n    let mut program = Program::create(\"\n    ++++++++[\u003e++++[\u003e++\u003e+++\u003e+++\u003e+\u003c\u003c\u003c\u003c-]\n    \u003e+\u003e+\u003e-\u003e\u003e+[\u003c]\u003c-]\u003e\u003e.\u003e---.+++++++..++\n    +.\u003e\u003e.\u003c-.\u003c.+++.------.--------.\u003e\u003e+.\u003e\n    ++.\n    \").unwrap();\n\n    program.stdin  (Box::new (|| 0u8 ));\n    program.stdout (Box::new(|b| print!(\"{}\", b as char))); \n    program.run().unwrap();\n}\n```\n\n## overview\n\nbrainfuck-rs is a small interpreter for the brainfuck programming language written in Rust. This project was written to \nexperiment with hosting a small vm inside of Rust and to explore various threading and io related concepts. This project\nwas also written for fun.\n\ninformation on the brainfuck language can be found at [https://en.wikipedia.org/wiki/Brainfuck](https://en.wikipedia.org/wiki/Brainfuck)\n\nThis project offered as is for anyone who finds it useful or interesting.\n\n## running examples\n\n```\ncargo run --example helloworld\n\ncargo run --example fibonacci\n\ncargo run --example mandelbrot\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsinclairzx81%2Fbrainfuck-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsinclairzx81%2Fbrainfuck-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsinclairzx81%2Fbrainfuck-rs/lists"}