{"id":20204829,"url":"https://github.com/aquice/entropia","last_synced_at":"2026-06-09T15:01:19.288Z","repository":{"id":224561049,"uuid":"637117033","full_name":"AquIce/Entropia","owner":"AquIce","description":"Entropia is a C++ based programming language, implementing ownership and other usefull stuff","archived":false,"fork":false,"pushed_at":"2024-06-24T10:48:54.000Z","size":496,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-03T09:41:46.004Z","etag":null,"topics":["interpreter","lexer","parser","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":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AquIce.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":"2023-05-06T15:02:07.000Z","updated_at":"2024-06-24T10:48:58.000Z","dependencies_parsed_at":"2024-06-24T12:08:45.063Z","dependency_job_id":"bc22e05a-d8b7-4d67-8832-fae5caab1d30","html_url":"https://github.com/AquIce/Entropia","commit_stats":null,"previous_names":["aquice/entropia"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AquIce/Entropia","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AquIce%2FEntropia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AquIce%2FEntropia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AquIce%2FEntropia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AquIce%2FEntropia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AquIce","download_url":"https://codeload.github.com/AquIce/Entropia/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AquIce%2FEntropia/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34112225,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"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":["interpreter","lexer","parser","programming-language"],"created_at":"2024-11-14T05:15:19.907Z","updated_at":"2026-06-09T15:01:19.268Z","avatar_url":"https://github.com/AquIce.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Entropia\nEntropia is a C++ based programming language, implementing ownership and other usefull stuff\n\n# TODO\n\n## Language Features\n\n- [x] Add variables\n  - [x] Declaration syntax\n  - [x] Assignment syntax\n  - [x] Initialization syntax\n- [x] Add functions\n  - [x] Declaration syntax\n  - [x] Call syntax\n  - [x] Scopes\n  - [ ] Optionnal arguments\n  - [x] Return statement\n- [x] Add conditions\n  - [x] If\n  - [x] Else If\n  - [x] Else\n  - [x] Logical operators\n    - [x] Binary operators\n      - [x] ==\n      - [x] !=\n      - [x] \u0026\u0026\n      - [x] ||\n      - [x] \u003c\n      - [x] \u003e\n      - [x] \u003c=\n      - [x] \u003e=\n      - [x] ^^\n    - [x] Unary operators\n      - [x] !\n  - [x] Match\n- [ ] Add loops\n  - [x] For\n  - [x] While\n  - [ ] For : (requires arrays/strings)\n- [x] Add comments\n  - [x] Single line\n  - [x] Multi line\n- [x] Add other operators\n  - [x] Binary operators\n    - [x] %\n    - [x] \u003c\u003c\n    - [x] \u003e\u003e\n    - [x] \u0026\n    - [x] |\n    - [x] ^\n  - [x] Unary operators\n    - [x] ++\n    - [x] --\n    - [x] ~\n  - [x] Assignment\n    - [x] (any)=\n  - [x] Ternaries\n- [ ] Add other datatypes\n  - [x] Booleans\n  - [x] Characters\n  - [x] Strings\n  - [ ] Arrays\n  - [ ] Maps\n- [ ] Add user-defined types\n  - [x] Type declaration\n  - [x] Type implementation\n  - [x] Access specifiers\n  - [ ] Instanciation\n  - [ ] Member access syntax\n    - [ ] External\n    - [ ] Internal\n- [ ] Add modules\n- [ ] Add testing capabilities\n- [ ] Add templating\n- [ ] Add better macros\n\n## Fixes / Additionnal features\n\n- [x] Add concept of subEnv to allow scoping variables (add scope attribute to fn, if, for, ...)\n- [x] Make parenthesis precedence\n- [x] Add default to const (mut)\n- [x] Add recursion guards\n- [x] Move function call to expression evaluation (to allow fn() + fn())\n- [x] Add support for negative numbers\n- [ ] Prevent constant assign without value\n- [ ] Add `is_valid_value` to every type (easier user-defined types)\n- [ ] Fix unsigned variables declaration\n- [ ] Fix `magnitude` on runtime NumberValues (u8 \u003c-\u003e i8)\n- [ ] Add function args+return type check \n- [ ] Add comments and clean code\n- [ ] Add variables check to parsing\n- [ ] Evaluate constant expressions at compile time\n- [ ] Compile language\n\n## Extension\n\n[Wiki][wiki_lnk]\n\n\n\n[wiki_lnk]: https://code.visualstudio.com/api/get-started/your-first-extension","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faquice%2Fentropia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faquice%2Fentropia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faquice%2Fentropia/lists"}