{"id":49939363,"url":"https://github.com/olive-language/olive","last_synced_at":"2026-05-17T09:04:12.892Z","repository":{"id":356495659,"uuid":"1232196417","full_name":"olive-language/olive","owner":"olive-language","description":"The Dream Programming Language","archived":false,"fork":false,"pushed_at":"2026-05-15T03:24:13.000Z","size":477,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-15T03:40:01.572Z","etag":null,"topics":["coding-language","olive","olive-lang","programming-lang","programming-language","programming-language-design","programming-language-development"],"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/olive-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}},"created_at":"2026-05-07T17:27:19.000Z","updated_at":"2026-05-15T03:24:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/olive-language/olive","commit_stats":null,"previous_names":["ecnivs/olive","olive-language/olive"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/olive-language/olive","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olive-language%2Folive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olive-language%2Folive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olive-language%2Folive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olive-language%2Folive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/olive-language","download_url":"https://codeload.github.com/olive-language/olive/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olive-language%2Folive/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33132891,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T06:27:06.342Z","status":"ssl_error","status_checked_at":"2026-05-17T06:26:59.432Z","response_time":107,"last_error":"SSL_read: 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":["coding-language","olive","olive-lang","programming-lang","programming-language","programming-language-design","programming-language-development"],"created_at":"2026-05-17T09:04:07.504Z","updated_at":"2026-05-17T09:04:12.887Z","avatar_url":"https://github.com/olive-language.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg width=\"1452\" height=\"352\" alt=\"olive_logo\" src=\"https://github.com/user-attachments/assets/4e8923b3-0943-4a8f-b288-8abf497b900d\" /\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/olive-language/olive/stargazers\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/stars/olive-language/olive?style=flat-square\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/olive-language/olive/issues\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/issues/olive-language/olive?style=flat-square\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/olive-language/olive/blob/master/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/olive-language/olive?style=flat-square\"\u003e\n  \u003c/a\u003e\n  \u003cimg src=\"https://img.shields.io/github/languages/top/olive-language/olive?style=flat-square\"\u003e\n\u003c/p\u003e\n\n## Overview\n\n**A general-purpose systems language that's easy to read, fast to run, and keeps your memory safe.**\n\nOlive was built for when you want the speed of a low-level language without the headache of complex syntax. It uses a clean, indentation-based structure and a smart ownership model to provide consistent performance without a garbage collector.\n\n## Why Olive?\n\n- **Clean Syntax**: No braces, no semicolons. Indentation defines the structure, keeping your code readable and consistent.\n- **Fearless Safety**: A borrow checker catches memory errors and data races at compile time. No null pointers, no double-frees.\n- **Blazing Fast**: Optimized to native code via the Cranelift backend. It's designed to run close to the metal with zero-cost abstractions.\n- **Modern Concurrency**: True async/await that's easy to use and extremely efficient.\n- **Native Interop**: Interface with C or Rust libraries through a C-compatible ABI with built-in FFI support.\n- **Friendly Errors**: When things go wrong, the compiler tells you exactly where and why, with suggestions on how to fix it.\n\n## A Taste of Olive\n\n```python\n# A generic function to calculate average\nfn average[T: Numeric](numbers: [T]) -\u003e float:\n    let mut total = 0.0\n    for n in numbers:\n        total += float(n)\n    return total / float(len(numbers))\n\nasync fn process_data(data: [int]):\n    print(f\"Processing {len(data)} items...\")\n    let avg = average(data)\n    print(f\"Result: {avg:.2f}\")\n\nfn main():\n    let data = [10, 20, 30, 40, 50]\n    # Spawning an async task\n    async:\n        await process_data(data)\n\nmain()\n```\n\n## Getting Started\n\n**Linux and macOS:**\n\n```bash\ncurl -sSL https://raw.githubusercontent.com/olive-language/olive/master/install.sh | sh\n```\n\n**Windows:** download from the [releases page](https://github.com/olive-language/olive/releases/latest).\n\nThen:\n\n```bash\npit new my_app\ncd my_app\npit run\n```\n\n## Documentation\n\n- [Introduction](docs/introduction.md): Philosophy and goals.\n- [Basics](docs/basics.md): Variables, types, and control flow.\n- [Ownership](docs/ownership.md): How memory safety works.\n- [Generics](docs/generics.md): Writing reusable code.\n- [Native Interop](docs/ffi.md): Calling C code and using `unsafe`.\n- [Standard Library](docs/modules.md): What's in the box.\n- [Full Index](docs/index.md): Everything in one place.\n\n## Contributing\n\nContributions are welcome! Fork the repo, make a branch, and open a PR. Keep it simple, keep it clean.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folive-language%2Folive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Folive-language%2Folive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folive-language%2Folive/lists"}