{"id":19040511,"url":"https://github.com/vinetwigs/gofuck-interpreter","last_synced_at":"2026-06-22T22:31:20.140Z","repository":{"id":144268466,"uuid":"366801393","full_name":"Vinetwigs/gofuck-interpreter","owner":"Vinetwigs","description":"A simple brainfu*k interpreter written in Go","archived":false,"fork":false,"pushed_at":"2021-05-14T17:55:34.000Z","size":27,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-07T00:35:35.907Z","etag":null,"topics":["brainfuck","brainfuck-interpreter","go","golang","golang-examples","golang-module","golang-package","interpreter","module","package"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Vinetwigs.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":"2021-05-12T17:44:01.000Z","updated_at":"2021-12-28T12:19:47.000Z","dependencies_parsed_at":"2023-08-20T22:27:06.849Z","dependency_job_id":null,"html_url":"https://github.com/Vinetwigs/gofuck-interpreter","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/Vinetwigs/gofuck-interpreter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vinetwigs%2Fgofuck-interpreter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vinetwigs%2Fgofuck-interpreter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vinetwigs%2Fgofuck-interpreter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vinetwigs%2Fgofuck-interpreter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Vinetwigs","download_url":"https://codeload.github.com/Vinetwigs/gofuck-interpreter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vinetwigs%2Fgofuck-interpreter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34668500,"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-22T02:00:06.391Z","response_time":106,"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","brainfuck-interpreter","go","golang","golang-examples","golang-module","golang-package","interpreter","module","package"],"created_at":"2024-11-08T22:23:07.130Z","updated_at":"2026-06-22T22:31:20.119Z","avatar_url":"https://github.com/Vinetwigs.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GoFuck Interpreter\n![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/Vinetwigs/gofuck-interpreter)\n![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/Vinetwigs/gofuck-interpreter)\n![GitHub last commit](https://img.shields.io/github/last-commit/Vinetwigs/gofuck-interpreter)\n[![GoDoc](https://godoc.org/github.com/mewkiz/flac?status.svg)](https://godoc.org/github.com/Vinetwigs/gofuck-interpreter)\n\nA basic implementation in GoLang of a BrainFuck esoteric language interpreter.\n\n## Authors\n\n* **Vincenzo Esposito** - [Vinetwigs](https://github.com/Vinetwigs)\n\n## Getting Started\n\nYou just need to install the package as dependence and you can start using the interpreter to run your favourite BrainFuck programs :smile:\n\n### Prerequisites\n\n```\nGo\n```\n\n### Installing\n\n#### Install module\n```\ngo get github.com/Vinetwigs/gofuck-interpreter@v1.2.2\n```\n\n#### Import in your project\n```\nimport(\"github.com/Vinetwigs/gofuck-interpreter\")\n```\n\n## How to use\n\n### Create a new interpreter type variable reading from a file\n\n`i := interpreter.NewInterpreterFile(file *io.File, memSize int)`   \n\n\n| Parameter |                       Description                       |\n|:---------:|:-------------------------------------------------------:|\n| file      | a pointer to io.File rapresenting the file to interpret |\n| memSize   |      number of cells the memory will be composed of     |   \n\n### Create a new interpreter type variable reading from a path\n\n`i := interpreter.NewInterpreterString(path string, memSize int)`   \n\n\n| Parameter |                       Description                       |\n|:---------:|:-------------------------------------------------------:|\n| path      | a string rapresenting the path of the file to interpret |\n| memSize   |      number of cells the memory will be composed of     | \n\n### Interpret the entire program\n\n`i.InterpretFile()`\n\n### Interpret only the next instruction\n\n`i.Step()`\n\n\u003e Useful for debbugging\n\n\n## Built With\n\n* [GoLang](https://golang.org/) - The programming language used\n\n\n## License\n\nThis project is licensed under the Apache License Version 2.0 - see the [Apache License](https://www.apache.org/licenses/LICENSE-2.0) site for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinetwigs%2Fgofuck-interpreter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvinetwigs%2Fgofuck-interpreter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinetwigs%2Fgofuck-interpreter/lists"}