{"id":15031711,"url":"https://github.com/glint-lang/glint","last_synced_at":"2026-02-26T02:10:24.330Z","repository":{"id":250353027,"uuid":"834214547","full_name":"Glint-Lang/Glint","owner":"Glint-Lang","description":"🚀Glint - Flexible, fast and lightning fast programming language","archived":false,"fork":false,"pushed_at":"2024-09-22T14:32:31.000Z","size":184,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-13T13:22:20.689Z","etag":null,"topics":["cbor","compiler","glint","glint-lang","glint-language","intepreter","nom","programming-language","rust","rust-language","safety","serde","serde-json"],"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/Glint-Lang.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":"2024-07-26T17:08:58.000Z","updated_at":"2024-09-22T14:32:35.000Z","dependencies_parsed_at":"2024-10-26T12:08:45.475Z","dependency_job_id":"af5d7bbc-0ec1-40ed-bb13-bfa303a5f169","html_url":"https://github.com/Glint-Lang/Glint","commit_stats":null,"previous_names":["glint-lang/glint"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Glint-Lang%2FGlint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Glint-Lang%2FGlint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Glint-Lang%2FGlint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Glint-Lang%2FGlint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Glint-Lang","download_url":"https://codeload.github.com/Glint-Lang/Glint/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248112749,"owners_count":21049709,"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":["cbor","compiler","glint","glint-lang","glint-language","intepreter","nom","programming-language","rust","rust-language","safety","serde","serde-json"],"created_at":"2024-09-24T20:16:22.877Z","updated_at":"2025-10-29T11:32:27.707Z","avatar_url":"https://github.com/Glint-Lang.png","language":"Rust","readme":"![](./gltbanner.png)\n\n## Welcome to Glint!\n\nGlint is a lightweight programming language designed for simplicity and performance. It combines both interpreter and compiler capabilities to cater to diverse programming needs.\n\n### Features:\n- **Interpreted and Compiled:** Glint offers both interpreted and compiled modes. By using `use compiler` and `stop use compiler`, developers can opt for a compiled appraoach where the syntax includes braces `{}`, introduces typing, and addresses memory safety concerns—ideal for those requiring features typical of compiled languages.\n\n- **Error Handling:** Glint provides robust error handling with clear feedback to aid debugging.\n\n  ![Error Handling Screenshot Placeholder](placeholder-error-handler.png)\n\n- **Simplicity:** Glint features a straightforward syntax that promotes readability and ease of understanding.\n\n- **Performance:** Optimized for speed, Glint outperforms Python and competes closely with languages like JavaScript, Java, and Ruby in benchmarks.\n\n- **Dynamic Typing:** Supports dynamic typing for flexibility without explicit type annotations.\n\n### Getting Started\nTo begin using Glint:\n1. **Installation:** Clone the repository and compile Glint using Rust's Cargo:\n   ```bash\n   git clone https://github.com/your_username/glint.git\n   cd glint\n   cargo build --release\n   ```\n\n2. **Run a Glint Program:** Execute a Glint program by passing a `.glt` file as an argument:\n   ```bash\n   cargo run run my_program.glt\n   or\n   Glint run my_program.glt\n   ```\n\n### Documentation\nExplore the Glint documentation [here](https://glint.gitbook.io/glint).\n\n### Examples\nDiscover the simplicity and power of Glint with these examples:\n- **Hello World:**\n  ```Glint\n  write \"Hello, World!\"\n  ```\n\n- **Simple Arithmetic:**\n  ```Glint\n  a is 10\n  b is 20\n  sum is a + b\n  write \"Sum:\", sum\n  ```\n\n- **Simple Function:**\n  ```Glint\n  MyFunc(a, b) {\n    if a \u003e b {\n        return true\n    } elif a = b {\n        write \"a = b!\"\n        return true\n    } else {\n        return false\n    }\n  }\n  ```\n\n- **Simple compile + interpreter combination:**\n  ```Glint\n  array is [1, 2, 3, 4, 5]\n  write \"Lets go!\"\n  \n  \"use compile\"\n  Array(arr: Array) -\u003e int8 {\n    for i in array {\n        write i\n    }\n  }\n  \"stop compile\"\n  \n  Array(array)\n  \n  # output:\n  # 1\n  # 2\n  # 3\n  # 4\n  # 5\n  ```\n\n### Contributing\nContributions to Glint are welcome! Fork the repository and submit pull requests.\n\n### License\nGlint is licensed under the MIT License. See [LICENSE](https://github.com/Glint-Lang/Glint?tab=MIT-1-ov-file) for details.\n\n\n\n### Make your code flexible with Glint✨\n\n---\n\nJoin us in making programming simpler and faster with Glint! 🚀\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglint-lang%2Fglint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fglint-lang%2Fglint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglint-lang%2Fglint/lists"}