{"id":44967331,"url":"https://github.com/george-language/glang","last_synced_at":"2026-05-03T00:04:30.307Z","repository":{"id":287768007,"uuid":"960209537","full_name":"george-language/glang","owner":"george-language","description":"Primary source code repository for George Language","archived":false,"fork":false,"pushed_at":"2026-03-27T02:15:41.000Z","size":5503,"stargazers_count":26,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-27T08:45:48.116Z","etag":null,"topics":["programming-langauge","rust"],"latest_commit_sha":null,"homepage":"https://george-language.github.io/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/george-language.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},"funding":{"github":["mpsoftwarefoundation"]}},"created_at":"2025-04-04T03:31:42.000Z","updated_at":"2026-03-27T02:15:37.000Z","dependencies_parsed_at":"2025-07-06T18:21:02.428Z","dependency_job_id":"7d123808-ffe1-476a-815d-49c8a1d590e8","html_url":"https://github.com/george-language/glang","commit_stats":null,"previous_names":["ktechhydle/georgelanguage","mpsoftwarefoundation/georgelanguage","george-language/glang"],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/george-language/glang","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george-language%2Fglang","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george-language%2Fglang/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george-language%2Fglang/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george-language%2Fglang/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/george-language","download_url":"https://codeload.github.com/george-language/glang/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george-language%2Fglang/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31311041,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["programming-langauge","rust"],"created_at":"2026-02-18T14:43:44.563Z","updated_at":"2026-04-02T17:03:30.322Z","avatar_url":"https://github.com/george-language.png","language":"Rust","funding_links":["https://github.com/sponsors/mpsoftwarefoundation"],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cpicture\u003e\n    \u003cimg\n         src=\"assets/george_language_icon.svg\"\n         width=\"25%\"\u003e\n  \u003c/picture\u003e\n\n[Website](https://george-language.github.io/) | [Download](https://george-language.github.io/docs/install/) | [Learn](https://george-language.github.io/book/) | [Documentation](https://george-language.github.io/docs/)\n\n_A dog-themed, interpreted programming language for beginners._\n\u003c/div\u003e\n\n## Why George Language?\n\nGLang was made because beginner-friendly languages don’t have to be boring. GLang is:\n\n- **Approachable:** Simple syntax and fun naming conventions to help users learn quick. Functions like `bark`, `chew`, and `uhoh` make coding more intuitive and playful.\n\n- **Educational:** Teaches real programming concepts under the hood, like data structures (lists, strings) and collections such as hashmap.\n\n- **All-In-One:** The `glang` binary includes the GLang runtime, package management, and component tools like `glang self update`\n\n## Syntax\n\nGLang’s syntax is designed to be fun, easy, and good on the eyes, while still teaching real programming concepts.\n\n### 🦴 Basic Types\n\n```\n# glang has 3 primary types\nobj list = [1, 2, 3];\nobj string = \"This is a string\";\nobj number = 3.14;\n```\n\n### 🔒 Constants\n\n```\n# \"stay\" makes a value constant\nstay CONSTANT = true;\n```\n\n### 🐕 Functions\n\n```\n# Define a function with \"func\"\nfunc example(arg1) {\n    give arg1;  # 'give' = return\n}\n```\n\n### 🤔 Conditionals\n\n```\nif 1 == 2 {\n    bark(\"Math broke!\");\n} alsoif 1 == 3 {\n    bark(\"Math is very broken!\");\n} otherwise {\n    bark(\"Math is working just fine.\");\n}\n```\n\n### 🔁 Loops\n\n```\n# While loop\nwhile true {\n    leave;  # stop a loop\n}\n\n# For loop\nwalk i = 0 through 10 {\n    bark(i);\n}\n```\n\n### 📦 Imports\n\n```\n# Bring in external modules\nfetch std_math;\n\nbark(math_pi);\n```\n\n### 🧩 Error Handling\n\n```\ntry {\n    1 / 0;\n} catch error {\n    bark(\"Some error occurred: \" + error);\n}\n```\n\n## Features\n\n- 🐶 Whimsical, ultra-friendly syntax\n- 📚 Built-in modules for math, strings, and more\n- 💬 Easy-to-understand functions like `dig()`, `bury()`, and `uhoh()`\n- 📦 Package management with `kennels` and extensibility with `fetch`\n- 🌐 Open source and growing community\n\n## Installation\n\nYou can download GLang [here](https://george-language.github.io/docs/install/), or check out the quick setup instructions in the [guide book](https://george-language.github.io/book/).\n\n## License\n\nGeorge Language is licensed under **GPL v3**. That means it's **free, open source, and always will be** just like George's spirit!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorge-language%2Fglang","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeorge-language%2Fglang","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorge-language%2Fglang/lists"}