{"id":46129319,"url":"https://github.com/lume-lang/lume","last_synced_at":"2026-03-02T03:16:50.858Z","repository":{"id":297646212,"uuid":"945030537","full_name":"lume-lang/lume","owner":"lume-lang","description":"🌙 Comfortable and succinct programming language. Type-safe, expressive and to the point.","archived":false,"fork":false,"pushed_at":"2026-02-25T13:09:22.000Z","size":4611,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-25T16:56:53.231Z","etag":null,"topics":["compiler","expressive","programming-language","statically-typed"],"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/lume-lang.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2025-03-08T13:55:04.000Z","updated_at":"2026-02-25T13:09:27.000Z","dependencies_parsed_at":"2025-06-21T14:25:26.557Z","dependency_job_id":"1e53c6c8-0783-4850-bb64-dc7893d04ab1","html_url":"https://github.com/lume-lang/lume","commit_stats":null,"previous_names":["lume-lang/lume"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/lume-lang/lume","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lume-lang%2Flume","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lume-lang%2Flume/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lume-lang%2Flume/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lume-lang%2Flume/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lume-lang","download_url":"https://codeload.github.com/lume-lang/lume/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lume-lang%2Flume/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29991382,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T01:47:34.672Z","status":"online","status_checked_at":"2026-03-02T02:00:07.342Z","response_time":60,"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":["compiler","expressive","programming-language","statically-typed"],"created_at":"2026-03-02T03:16:50.235Z","updated_at":"2026-03-02T03:16:50.848Z","avatar_url":"https://github.com/lume-lang.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🌙 Lume\n\nLume is a lightweight yet powerful programming language designed for simplicity and efficiency. It's syntax is intuitive, making it easy for developers to pick up and start building applications quickly. \n\n## Examples\n\nHere's a quick glimpse of Lume's capabilities:\n\nA simple hello-world application:\n```lm\nimport std::io (print)\n\nfn main() {\n  print(\"Hello, World!\");\n}\n```\n\nTypes can also be defined with `struct`:\n```lm\nimport std::io (print)\n\nstruct Counter {\n  value: Int32;\n}\n\nimpl Counter {\n  pub fn new() -\u003e Counter {\n    return Counter { value: 0 };\n  }\n\n  pub fn increment(self) {\n    self.value++;\n  }\n\n  pub fn decrement(self) {\n    self.value--;\n  }\n\n  pub fn value(self) -\u003e Int32 {\n    return self.value;\n  }\n}\n\nfn main() {\n  let counter = Counter::new();\n  counter.increment();\n\n  print(\"Value: {0}\", counter.value());\n\n  counter.decrement();\n  print(\"Value: {0}\", counter.value());\n}\n```\n\n# License\n\nThe repository defines the reference compiler for Lume and is licensed under the [MIT License](./LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flume-lang%2Flume","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flume-lang%2Flume","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flume-lang%2Flume/lists"}