{"id":17071282,"url":"https://github.com/s-macke/forthly","last_synced_at":"2025-04-12T19:52:58.150Z","repository":{"id":151131726,"uuid":"522067141","full_name":"s-macke/Forthly","owner":"s-macke","description":"Tiny Forth implementation in Go","archived":false,"fork":false,"pushed_at":"2023-12-03T09:44:32.000Z","size":207,"stargazers_count":14,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-12T19:52:52.434Z","etag":null,"topics":["forth","golang","programming-language","webassembly"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/s-macke.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}},"created_at":"2022-08-06T22:30:54.000Z","updated_at":"2025-01-05T09:53:28.000Z","dependencies_parsed_at":"2023-12-02T13:45:05.462Z","dependency_job_id":null,"html_url":"https://github.com/s-macke/Forthly","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s-macke%2FForthly","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s-macke%2FForthly/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s-macke%2FForthly/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s-macke%2FForthly/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/s-macke","download_url":"https://codeload.github.com/s-macke/Forthly/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248625509,"owners_count":21135513,"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":["forth","golang","programming-language","webassembly"],"created_at":"2024-10-14T11:35:49.666Z","updated_at":"2025-04-12T19:52:58.126Z","avatar_url":"https://github.com/s-macke.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Forthly\n\n# **[Click to run][project demo]**\n\nThis is just another Forth implementation.\n\n- Written in Go and compiled to WebAssembly.\n- [Bootstrapped](src/forth/bootstrap.fth) after the initialization of some [primitive](src/forth/primitives.go) words\n- Rudimentary type checking to differ between functions, pointer to words and ints.\n\n## Tutorial\nIf you are unfamiliar with Forth, try the following tutorial.\nIt is one of the best.\n\nhttps://www.forth.com/starting-forth/\n\n## The Heap\n\nThe heap is the most important data object in Forth. It contains data and code. \nHere it is just implemented as an array of `interface{}` or any.\n\n```Go\nheap        []any\n```\n\nJust call `dump` to see the contents of the heap. \n\n## How to run\n\nTo compile a standalone executable just run\n\n```bash\ncd src \ngo build \n```\n\notherwise compile it by running `./build.sh`\n\n## Other implementations or documentations\n\nhttps://github.com/howerj/libforth\n\nhttps://github.com/bshepherdson/fcc\n\nhttps://gist.github.com/lbruder/10007431\n\nhttps://github.com/larsbrinkhoff/forth-compiler\n\nhttps://github.com/vbocan/delta-forth\n\nhttps://github.com/Reschivon/movForth\n\nhttps://github.com/kragen/stoneknifeforth\n\nhttps://github.com/zevv/zForth\n\nhttps://github.com/nornagon/jonesforth\n\nhttps://github.com/sayon/forthress\n\nhttps://github.com/philburk/pforth\n\nhttps://github.com/larsbrinkhoff/xForth\n\nhttps://gist.github.com/mbillingr/c2bdca4f618974e7e8d1449aba792b41\n\nhttps://github.com/benhoyt/third\n\nhttps://github.com/pzembrod/cc64\n\nhttps://github.com/jkotlinski/durexforth\n\nhttps://github.com/jkotlinski/acmeforth\n\nhttps://github.com/skx/foth\n\nhttps://github.com/unixdj/forego\n\nhttps://forth.neocities.org/bootstrap/\n\nhttp://lars.nocrew.org/forth2012/index.html\n\nhttp://lars.nocrew.org/forth2012/core/PARSE.html\n\nhttps://compilercrim.es/bootstrap/miniforth/\n\nhttps://github.com/nineties/planckforth\n\nhttps://bootstrapping.miraheze.org/wiki/Forth\n\nhttps://github.com/tehologist/forthkit\n\nhttps://github.com/hcchengithub/eforth-x86-64bits\n\nhttps://github.com/mitra42/webForth\n\nhttps://github.com/topics/forth?l=c\u0026o=desc\u0026s=updated\n\nhttps://forth-standard.org/\n\n[project demo]: https://s-macke.github.io/Forthly/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs-macke%2Fforthly","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fs-macke%2Fforthly","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs-macke%2Fforthly/lists"}