{"id":49225816,"url":"https://github.com/geko-rs/geko","last_synced_at":"2026-05-24T08:05:04.975Z","repository":{"id":341501697,"uuid":"1170358410","full_name":"geko-rs/geko","owner":"geko-rs","description":"🦎 A friendly, lightweight programming language for math and games","archived":false,"fork":false,"pushed_at":"2026-05-17T06:27:28.000Z","size":472,"stargazers_count":16,"open_issues_count":1,"forks_count":4,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-17T08:46:57.165Z","etag":null,"topics":["interpreter","programming-language"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/geko-rs.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-02T03:09:36.000Z","updated_at":"2026-05-15T08:28:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/geko-rs/geko","commit_stats":null,"previous_names":["tick-io/tick","squirrel-rs/squirrel","squirrel-rs/loom","geko-rs/geko"],"tags_count":31,"template":false,"template_full_name":null,"purl":"pkg:github/geko-rs/geko","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geko-rs%2Fgeko","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geko-rs%2Fgeko/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geko-rs%2Fgeko/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geko-rs%2Fgeko/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/geko-rs","download_url":"https://codeload.github.com/geko-rs/geko/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geko-rs%2Fgeko/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33426014,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T22:14:44.296Z","status":"online","status_checked_at":"2026-05-24T02:00:06.296Z","response_time":57,"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":["interpreter","programming-language"],"created_at":"2026-04-24T07:05:15.400Z","updated_at":"2026-05-24T08:05:04.966Z","avatar_url":"https://github.com/geko-rs.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg width=\"226\" height=\"101\" alt=\"image\" src=\"https://github.com/user-attachments/assets/163cbb6b-53c7-4a95-9e7f-509b3563dde4\" /\u003e\n\n#### 🦎 Geko\n... is a friendly, lightweight programming language for math and games\n\n#### 💡 Status\n`Geko` is unstable, and currently a **work in progress project (WIP)**.  \nNightly builds are available giving you a chance to explore and test the language as it evolves.\n\n#### 🏠 Quick Start\n```geko\nputln(\"Hello, world!\");\n```\n\n#### ✨ Examples\n```geko\nfun greet(name) {\n  greetings := [\n    \"Nice to meet you\",\n    \"Welcome aboard\",\n    \"Glad you're here\",\n    \"Hey\"\n  ]\n\n  greeting := greetings.choice()\n  putln(greeting + \", \" + name, \" 🎉!\")\n}\n\nputln(\"👋 Hey there! What's your name?\")\ngreet(readln())\n```\n\n```geko\nclass Sandwich {\n  fun init(self, cheese, tomatoes) {\n    self.cheese := cheese\n    self.tomatoes := tomatoes\n  }\n\n  fun cook(self) {\n    putln(\n      \"Sandwich is ready with \"\n      + str_of(self.cheese) + \" cheese, \"\n      + str_of(self.tomatoes) + \" tomatoes.\"\n    )\n  }\n}\n\nsandwich := Sandwich(3, 2)\nsandwich.cook()\n```\n\n#### 🔦 ToDo\n- [ ] `os` library\n- [x] `fs` library\n- [x] `time` library\n- [x] update `math` library\n- [x] implement `random` in `math` library\n- [x] implement `choice` for list\n- [ ] `strings` library\n- [ ] `fmt` library\n- [x] `convert` library\n- [ ] `reflect` library\n- [x] `env` library (by `Antares64`)\n- [x] `mem` library\n- [ ] `unsafe` library\n- [ ] `signal` library\n- [ ] `zip` library\n- [ ] `color` library\n- [ ] `ffi` library\n- [ ] `net/http` library\n- [ ] `net/tcp` library\n- [ ] `net/udp` library\n- [ ] `net/socket` library\n- [ ] `uuid` library\n- [x] `crypto` library\n- [ ] `sys` library\n- [x] `process` library\n- [ ] `iter` library\n- [ ] use `lasso` for string interning\n- [x] rework anonymous functions syntax\n- [ ] implement `shuffle` for list\n- [x] `ok` and `error` builtins\n- [x] `todo` builtin\n- [ ] `loop` keyword\n- [ ] `assert` keyword\n- [x] implement anonymous functions\n- [x] extend for loop to iterate over items of list\n- [x] implement dictionaries\n- [ ] write specification for standard library\n- [ ] start writing documentation\n- [ ] basic jit\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeko-rs%2Fgeko","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeko-rs%2Fgeko","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeko-rs%2Fgeko/lists"}