{"id":22020743,"url":"https://github.com/yuminaa/yu-lang","last_synced_at":"2025-07-22T03:03:36.754Z","repository":{"id":272103969,"uuid":"901221832","full_name":"yuminaa/yu-lang","owner":"yuminaa","description":"language + compiler","archived":false,"fork":false,"pushed_at":"2025-01-16T18:00:04.000Z","size":143,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-03-23T10:17:17.826Z","etag":null,"topics":["compiler-construction","compiler-design","cpp20","ir","language-design","programming-language"],"latest_commit_sha":null,"homepage":"","language":"C++","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/yuminaa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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-12-10T09:06:52.000Z","updated_at":"2025-01-12T16:52:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"46985947-0abd-450d-af81-8c9acff61dd0","html_url":"https://github.com/yuminaa/yu-lang","commit_stats":null,"previous_names":["yuminaa/yu-lang"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yuminaa/yu-lang","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuminaa%2Fyu-lang","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuminaa%2Fyu-lang/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuminaa%2Fyu-lang/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuminaa%2Fyu-lang/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yuminaa","download_url":"https://codeload.github.com/yuminaa/yu-lang/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuminaa%2Fyu-lang/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266416847,"owners_count":23925296,"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","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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-construction","compiler-design","cpp20","ir","language-design","programming-language"],"created_at":"2024-11-30T06:07:43.058Z","updated_at":"2025-07-22T03:03:36.048Z","avatar_url":"https://github.com/yuminaa.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Yu Programming Language\n\n[![Build Status](https://github.com/yuminaa/yu-lang/actions/workflows/workflow.yml/badge.svg)](https://github.com/yuminaa/yu-lang/actions)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nYu is a statically typed, compiled programming language designed for data-oriented programming while maintaining\nfamiliar OOP-like syntax. It emphasizes data layout, cache coherency, and efficient memory patterns while providing a\ncomfortable, modern programming interface.\n\n\u003e [!IMPORTANT]\n\u003e The compiler is currently under development and not ready for production use.\n\n## Philosophy\n\nYu uses class-like syntax as a familiar interface for defining data structures and their associated operations, but\ninternally treats data and behavior separately.\n\n## Code Example\n\n```yu\nimport { io } from 'sys'; \n\n@align(16)\nclass Vector3\n{\n    var x: i32 = 0;\n    var y: i32 = 0;\n    var z: i32 = 0;\n};\n\nclass Player : Entity\n{\n    private var position: Vector3 = Vector3({ x = 10, y = 20, z = -10 });\n    private var velocity: Vector3 = Vector3();\n    \n    public operator new() -\u003e Player \n    {\n        return new Ptr\u003cPlayer\u003e();\n    }\n    \n    public function MoveTo(target: Vector3) -\u003e void \n    {\n        this.position = target;\n    }\n};\n\nclass Generic\u003cT\u003e\n{\n    var value: T;\n    public function GetValue() -\u003e T \n    {\n        return this.value;\n    }\n};\n```\n\n# Roadmap\n\n- [X] Lexer\n- [ ] Parser\n- [ ] Semantic Analysis\n- [ ] Code Generation\n- [ ] Optimization\n- [ ] Standard Library","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyuminaa%2Fyu-lang","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyuminaa%2Fyu-lang","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyuminaa%2Fyu-lang/lists"}