├── .gitattributes ├── .gitignore ├── LICENSE ├── LICENSE-MIT ├── README.md ├── languages.json ├── requirements.txt └── update.py /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | .pybuilder/ 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | # For a library or package, you might want to ignore these files since the code is 87 | # intended to run in multiple environments; otherwise, check them in: 88 | # .python-version 89 | 90 | # pipenv 91 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 92 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 93 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 94 | # install all needed dependencies. 95 | #Pipfile.lock 96 | 97 | # poetry 98 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 99 | # This is especially recommended for binary packages to ensure reproducibility, and is more 100 | # commonly ignored for libraries. 101 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 102 | #poetry.lock 103 | 104 | # pdm 105 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 106 | #pdm.lock 107 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 108 | # in version control. 109 | # https://pdm.fming.dev/#use-with-ide 110 | .pdm.toml 111 | 112 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 113 | __pypackages__/ 114 | 115 | # Celery stuff 116 | celerybeat-schedule 117 | celerybeat.pid 118 | 119 | # SageMath parsed files 120 | *.sage.py 121 | 122 | # Environments 123 | .env 124 | .venv 125 | env/ 126 | venv/ 127 | ENV/ 128 | env.bak/ 129 | venv.bak/ 130 | 131 | # Spyder project settings 132 | .spyderproject 133 | .spyproject 134 | 135 | # Rope project settings 136 | .ropeproject 137 | 138 | # mkdocs documentation 139 | /site 140 | 141 | # mypy 142 | .mypy_cache/ 143 | .dmypy.json 144 | dmypy.json 145 | 146 | # Pyre type checker 147 | .pyre/ 148 | 149 | # pytype static type analyzer 150 | .pytype/ 151 | 152 | # Cython debug symbols 153 | cython_debug/ 154 | 155 | # PyCharm 156 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 157 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 158 | # and can be added to the global gitignore or merged into this file. For a more nuclear 159 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 160 | #.idea/ 161 | 162 | bin/ 163 | pyvenv.cfg 164 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution 4.0 International Public License 58 | 59 | By exercising the Licensed Rights (defined below), You accept and agree 60 | to be bound by the terms and conditions of this Creative Commons 61 | Attribution 4.0 International Public License ("Public License"). To the 62 | extent this Public License may be interpreted as a contract, You are 63 | granted the Licensed Rights in consideration of Your acceptance of 64 | these terms and conditions, and the Licensor grants You such rights in 65 | consideration of benefits the Licensor receives from making the 66 | Licensed Material available under these terms and conditions. 67 | 68 | 69 | Section 1 -- Definitions. 70 | 71 | a. Adapted Material means material subject to Copyright and Similar 72 | Rights that is derived from or based upon the Licensed Material 73 | and in which the Licensed Material is translated, altered, 74 | arranged, transformed, or otherwise modified in a manner requiring 75 | permission under the Copyright and Similar Rights held by the 76 | Licensor. For purposes of this Public License, where the Licensed 77 | Material is a musical work, performance, or sound recording, 78 | Adapted Material is always produced where the Licensed Material is 79 | synched in timed relation with a moving image. 80 | 81 | b. Adapter's License means the license You apply to Your Copyright 82 | and Similar Rights in Your contributions to Adapted Material in 83 | accordance with the terms and conditions of this Public License. 84 | 85 | c. Copyright and Similar Rights means copyright and/or similar rights 86 | closely related to copyright including, without limitation, 87 | performance, broadcast, sound recording, and Sui Generis Database 88 | Rights, without regard to how the rights are labeled or 89 | categorized. For purposes of this Public License, the rights 90 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 91 | Rights. 92 | 93 | d. Effective Technological Measures means those measures that, in the 94 | absence of proper authority, may not be circumvented under laws 95 | fulfilling obligations under Article 11 of the WIPO Copyright 96 | Treaty adopted on December 20, 1996, and/or similar international 97 | agreements. 98 | 99 | e. Exceptions and Limitations means fair use, fair dealing, and/or 100 | any other exception or limitation to Copyright and Similar Rights 101 | that applies to Your use of the Licensed Material. 102 | 103 | f. Licensed Material means the artistic or literary work, database, 104 | or other material to which the Licensor applied this Public 105 | License. 106 | 107 | g. Licensed Rights means the rights granted to You subject to the 108 | terms and conditions of this Public License, which are limited to 109 | all Copyright and Similar Rights that apply to Your use of the 110 | Licensed Material and that the Licensor has authority to license. 111 | 112 | h. Licensor means the individual(s) or entity(ies) granting rights 113 | under this Public License. 114 | 115 | i. Share means to provide material to the public by any means or 116 | process that requires permission under the Licensed Rights, such 117 | as reproduction, public display, public performance, distribution, 118 | dissemination, communication, or importation, and to make material 119 | available to the public including in ways that members of the 120 | public may access the material from a place and at a time 121 | individually chosen by them. 122 | 123 | j. Sui Generis Database Rights means rights other than copyright 124 | resulting from Directive 96/9/EC of the European Parliament and of 125 | the Council of 11 March 1996 on the legal protection of databases, 126 | as amended and/or succeeded, as well as other essentially 127 | equivalent rights anywhere in the world. 128 | 129 | k. You means the individual or entity exercising the Licensed Rights 130 | under this Public License. Your has a corresponding meaning. 131 | 132 | 133 | Section 2 -- Scope. 134 | 135 | a. License grant. 136 | 137 | 1. Subject to the terms and conditions of this Public License, 138 | the Licensor hereby grants You a worldwide, royalty-free, 139 | non-sublicensable, non-exclusive, irrevocable license to 140 | exercise the Licensed Rights in the Licensed Material to: 141 | 142 | a. reproduce and Share the Licensed Material, in whole or 143 | in part; and 144 | 145 | b. produce, reproduce, and Share Adapted Material. 146 | 147 | 2. Exceptions and Limitations. For the avoidance of doubt, where 148 | Exceptions and Limitations apply to Your use, this Public 149 | License does not apply, and You do not need to comply with 150 | its terms and conditions. 151 | 152 | 3. Term. The term of this Public License is specified in Section 153 | 6(a). 154 | 155 | 4. Media and formats; technical modifications allowed. The 156 | Licensor authorizes You to exercise the Licensed Rights in 157 | all media and formats whether now known or hereafter created, 158 | and to make technical modifications necessary to do so. The 159 | Licensor waives and/or agrees not to assert any right or 160 | authority to forbid You from making technical modifications 161 | necessary to exercise the Licensed Rights, including 162 | technical modifications necessary to circumvent Effective 163 | Technological Measures. For purposes of this Public License, 164 | simply making modifications authorized by this Section 2(a) 165 | (4) never produces Adapted Material. 166 | 167 | 5. Downstream recipients. 168 | 169 | a. Offer from the Licensor -- Licensed Material. Every 170 | recipient of the Licensed Material automatically 171 | receives an offer from the Licensor to exercise the 172 | Licensed Rights under the terms and conditions of this 173 | Public License. 174 | 175 | b. No downstream restrictions. You may not offer or impose 176 | any additional or different terms or conditions on, or 177 | apply any Effective Technological Measures to, the 178 | Licensed Material if doing so restricts exercise of the 179 | Licensed Rights by any recipient of the Licensed 180 | Material. 181 | 182 | 6. No endorsement. Nothing in this Public License constitutes or 183 | may be construed as permission to assert or imply that You 184 | are, or that Your use of the Licensed Material is, connected 185 | with, or sponsored, endorsed, or granted official status by, 186 | the Licensor or others designated to receive attribution as 187 | provided in Section 3(a)(1)(A)(i). 188 | 189 | b. Other rights. 190 | 191 | 1. Moral rights, such as the right of integrity, are not 192 | licensed under this Public License, nor are publicity, 193 | privacy, and/or other similar personality rights; however, to 194 | the extent possible, the Licensor waives and/or agrees not to 195 | assert any such rights held by the Licensor to the limited 196 | extent necessary to allow You to exercise the Licensed 197 | Rights, but not otherwise. 198 | 199 | 2. Patent and trademark rights are not licensed under this 200 | Public License. 201 | 202 | 3. To the extent possible, the Licensor waives any right to 203 | collect royalties from You for the exercise of the Licensed 204 | Rights, whether directly or through a collecting society 205 | under any voluntary or waivable statutory or compulsory 206 | licensing scheme. In all other cases the Licensor expressly 207 | reserves any right to collect such royalties. 208 | 209 | 210 | Section 3 -- License Conditions. 211 | 212 | Your exercise of the Licensed Rights is expressly made subject to the 213 | following conditions. 214 | 215 | a. Attribution. 216 | 217 | 1. If You Share the Licensed Material (including in modified 218 | form), You must: 219 | 220 | a. retain the following if it is supplied by the Licensor 221 | with the Licensed Material: 222 | 223 | i. identification of the creator(s) of the Licensed 224 | Material and any others designated to receive 225 | attribution, in any reasonable manner requested by 226 | the Licensor (including by pseudonym if 227 | designated); 228 | 229 | ii. a copyright notice; 230 | 231 | iii. a notice that refers to this Public License; 232 | 233 | iv. a notice that refers to the disclaimer of 234 | warranties; 235 | 236 | v. a URI or hyperlink to the Licensed Material to the 237 | extent reasonably practicable; 238 | 239 | b. indicate if You modified the Licensed Material and 240 | retain an indication of any previous modifications; and 241 | 242 | c. indicate the Licensed Material is licensed under this 243 | Public License, and include the text of, or the URI or 244 | hyperlink to, this Public License. 245 | 246 | 2. You may satisfy the conditions in Section 3(a)(1) in any 247 | reasonable manner based on the medium, means, and context in 248 | which You Share the Licensed Material. For example, it may be 249 | reasonable to satisfy the conditions by providing a URI or 250 | hyperlink to a resource that includes the required 251 | information. 252 | 253 | 3. If requested by the Licensor, You must remove any of the 254 | information required by Section 3(a)(1)(A) to the extent 255 | reasonably practicable. 256 | 257 | 4. If You Share Adapted Material You produce, the Adapter's 258 | License You apply must not prevent recipients of the Adapted 259 | Material from complying with this Public License. 260 | 261 | 262 | Section 4 -- Sui Generis Database Rights. 263 | 264 | Where the Licensed Rights include Sui Generis Database Rights that 265 | apply to Your use of the Licensed Material: 266 | 267 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 268 | to extract, reuse, reproduce, and Share all or a substantial 269 | portion of the contents of the database; 270 | 271 | b. if You include all or a substantial portion of the database 272 | contents in a database in which You have Sui Generis Database 273 | Rights, then the database in which You have Sui Generis Database 274 | Rights (but not its individual contents) is Adapted Material; and 275 | 276 | c. You must comply with the conditions in Section 3(a) if You Share 277 | all or a substantial portion of the contents of the database. 278 | 279 | For the avoidance of doubt, this Section 4 supplements and does not 280 | replace Your obligations under this Public License where the Licensed 281 | Rights include other Copyright and Similar Rights. 282 | 283 | 284 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 285 | 286 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 287 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 288 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 289 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 290 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 291 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 292 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 293 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 294 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 295 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 296 | 297 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 298 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 299 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 300 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 301 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 302 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 303 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 304 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 305 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 306 | 307 | c. The disclaimer of warranties and limitation of liability provided 308 | above shall be interpreted in a manner that, to the extent 309 | possible, most closely approximates an absolute disclaimer and 310 | waiver of all liability. 311 | 312 | 313 | Section 6 -- Term and Termination. 314 | 315 | a. This Public License applies for the term of the Copyright and 316 | Similar Rights licensed here. However, if You fail to comply with 317 | this Public License, then Your rights under this Public License 318 | terminate automatically. 319 | 320 | b. Where Your right to use the Licensed Material has terminated under 321 | Section 6(a), it reinstates: 322 | 323 | 1. automatically as of the date the violation is cured, provided 324 | it is cured within 30 days of Your discovery of the 325 | violation; or 326 | 327 | 2. upon express reinstatement by the Licensor. 328 | 329 | For the avoidance of doubt, this Section 6(b) does not affect any 330 | right the Licensor may have to seek remedies for Your violations 331 | of this Public License. 332 | 333 | c. For the avoidance of doubt, the Licensor may also offer the 334 | Licensed Material under separate terms or conditions or stop 335 | distributing the Licensed Material at any time; however, doing so 336 | will not terminate this Public License. 337 | 338 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 339 | License. 340 | 341 | 342 | Section 7 -- Other Terms and Conditions. 343 | 344 | a. The Licensor shall not be bound by any additional or different 345 | terms or conditions communicated by You unless expressly agreed. 346 | 347 | b. Any arrangements, understandings, or agreements regarding the 348 | Licensed Material not stated herein are separate from and 349 | independent of the terms and conditions of this Public License. 350 | 351 | 352 | Section 8 -- Interpretation. 353 | 354 | a. For the avoidance of doubt, this Public License does not, and 355 | shall not be interpreted to, reduce, limit, restrict, or impose 356 | conditions on any use of the Licensed Material that could lawfully 357 | be made without permission under this Public License. 358 | 359 | b. To the extent possible, if any provision of this Public License is 360 | deemed unenforceable, it shall be automatically reformed to the 361 | minimum extent necessary to make it enforceable. If the provision 362 | cannot be reformed, it shall be severed from this Public License 363 | without affecting the enforceability of the remaining terms and 364 | conditions. 365 | 366 | c. No term or condition of this Public License will be waived and no 367 | failure to comply consented to unless expressly agreed to by the 368 | Licensor. 369 | 370 | d. Nothing in this Public License constitutes or may be interpreted 371 | as a limitation upon, or waiver of, any privileges and immunities 372 | that apply to the Licensor or You, including from the legal 373 | processes of any jurisdiction or authority. 374 | 375 | 376 | ======================================================================= 377 | 378 | Creative Commons is not a party to its public 379 | licenses. Notwithstanding, Creative Commons may elect to apply one of 380 | its public licenses to material it publishes and in those instances 381 | will be considered the “Licensor.” The text of the Creative Commons 382 | public licenses is dedicated to the public domain under the CC0 Public 383 | Domain Dedication. Except for the limited purpose of indicating that 384 | material is shared under a Creative Commons public license or as 385 | otherwise permitted by the Creative Commons policies published at 386 | creativecommons.org/policies, Creative Commons does not authorize the 387 | use of the trademark "Creative Commons" or any other trademark or logo 388 | of Creative Commons without its prior written consent including, 389 | without limitation, in connection with any unauthorized modifications 390 | to any of its public licenses or any other arrangements, 391 | understandings, or agreements concerning use of licensed material. For 392 | the avoidance of doubt, this paragraph does not form part of the 393 | public licenses. 394 | 395 | Creative Commons may be contacted at creativecommons.org. 396 | -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 XXIV 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Languages Written in Zig 2 | 3 | This is a list of languages implemented in 4 | Zig. It is intended as a source of inspiration and comparison, and as a 5 | directory of potentially interesting projects in this vein. Inspired by [langs-in-rust](https://github.com/alilleybrinker/langs-in-rust). 6 | 7 | ## What Can Be Included? 8 | 9 | 1. Is it a language? 10 | 2. Is it written in Zig? 11 | 12 | Then it can be included in this list! 13 | 14 | ## List of Languages 15 | 16 | | Name | ⭐ Stars | ☀️ Status | Description | 17 | |:-----|:---------|:-----------|:-----------| 18 | | [Bun] | 41,608 | ☀️ Active | Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one. | 19 | | [Zig] | 22,426 | ☀️ Active | General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. | 20 | | [Cyber] | 787 | ☀️ Active | Fast and concurrent scripting. | 21 | | [buzz] | 552 | ☀️ Active | 👨‍🚀 buzz, A small/lightweight statically typed scripting language (in development) | 22 | | [Aro] | 508 | ☀️ Active | A C compiler with the goal of providing fast compilation and low memory usage with good diagnostics. | 23 | | [bog] | 419 | ☀️ Active | Small, strongly typed, embeddable language. | 24 | | [LoLa] | 151 | ☀️ Active | LoLa is a small programming language meant to be embedded into games. | 25 | | [zigself] | 110 | ☀️ Active | An implementation of the Self programming language. | 26 | | [Mocha] | 55 | ☀️ Active | An elegant configuration language for both humans and machines. | 27 | | [Jazmin] | 9 | ☀️ Active | Zig implementation of Jasmin | 28 | | [ZigScript] | 8 | ☀️ Active | A companion scripting language for Zig developers. | 29 | | [Foray] | 7 | ☀️ Active | A concatenative language written in Zig | 30 | | [Orng] | 2 | ☀️ Active | Orng is a versatile general purpose programming language that gives developers control while still being expressive. | 31 | | [monkeyZ] | 0 | ☀️ Active | An interpreter for the monkeyZ language. | 32 | | [lox-zig] | 0 | ☀️ Active | A bytecode VM compiler / interpreter for the Lox language. | 33 | | [keto] | 0 | ☀️ Active | keto is an experimental scripting language based on "Crafting Interpreters" by Robert Nystrom. | 34 | | [ts-parser-zig] | 0 | ☀️ Active | A Hand Written TypeScript parser. | 35 | | [Zua] | 115 | 🌙 Inactive | An implementation of Lua 5.1 in Zig, for learning purposes | 36 | | [Luf] | 30 | 🌙 Inactive | Statically typed, embeddable, scripting language written in Zig. | 37 | | [zed] | 10 | 🌙 Inactive | The zed Programming Language is inspired by AWK in its main mode of operating on text files divided into records (usually lines), and columns within thos recoeds. | 38 | | [APScript] | 5 | 🌙 Inactive | An interpreter for the AP© Computer Science Principles pseudocode language. | 39 | | [djot.zig] | 5 | 🌙 Inactive | A parser for parsing djot files and converting them to HTML. | 40 | | [zbfi] | 1 | 🌙 Inactive | BrainFuck :robot: language interpreter. | 41 | | [kule-lang] | 1 | 🌙 Inactive | kule shader language. | 42 | | [brainfuck-interpreter] | 0 | 🌙 Inactive | Brainfuck interpreter. | 43 | | [zQasm] | 0 | 🌙 Inactive | OpenQASM parser. | 44 | 45 | ## License 46 | 47 | * `update.py` - [MIT](https://github.com/thechampagne/langs-in-zig/blob/main/LICENSE-MIT) 48 | * Everything else - [CC-BY-4.0](https://github.com/thechampagne/langs-in-zig/blob/main/LICENSE) 49 | 50 | [Zig]: https://github.com/ziglang/zig 51 | [bog]: https://github.com/Vexu/bog 52 | [buzz]: https://github.com/buzz-language/buzz 53 | [Cyber]: https://github.com/fubark/cyber 54 | [LoLa]: https://github.com/MasterQ32/LoLa 55 | [Luf]: https://github.com/Luukdegram/luf 56 | [Zua]: https://github.com/squeek502/zua 57 | [Jazmin]: https://github.com/desttinghim/jazmin 58 | [Mocha]: https://github.com/hqnna/mocha 59 | [Foray]: https://github.com/Grinshpon/Foray 60 | [APScript]: https://github.com/sno2/apscript-zig-archive 61 | [Bun]: https://github.com/oven-sh/bun 62 | [zbfi]: https://github.com/PrajwalCH/zbfi 63 | [brainfuck-interpreter]: https://github.com/rubenkristian/brainfuck-interpreter 64 | [Aro]: https://github.com/Vexu/arocc 65 | [zQasm]: https://github.com/AbeerVaishnav13/zQasm 66 | [monkeyZ]: https://github.com/andreabertanzon/monkeyZ 67 | [djot.zig]: https://github.com/leroycep/djot.zig 68 | [kule-lang]: https://github.com/musi-musi/kule-lang 69 | [Orng]: https://github.com/Rakhyvel/Orng 70 | [zigself]: https://github.com/sin-ack/zigself 71 | [lox-zig]: https://github.com/adrianchong518/lox-zig 72 | [keto]: https://github.com/Wuschli/keto 73 | [ts-parser-zig]: https://github.com/Himujjal/ts-parser-zig 74 | [zed]: https://github.com/jecolon/zed 75 | [ZigScript]: https://github.com/marler8997/zigscript 76 | -------------------------------------------------------------------------------- /languages.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Zig", 4 | "url": "https://github.com/ziglang/zig", 5 | "description": "General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.", 6 | "stars": 22426, 7 | "active": true 8 | }, 9 | { 10 | "name": "bog", 11 | "url": "https://github.com/Vexu/bog", 12 | "description": "Small, strongly typed, embeddable language.", 13 | "stars": 419, 14 | "active": true 15 | }, 16 | { 17 | "name": "buzz", 18 | "url": "https://github.com/buzz-language/buzz", 19 | "description": "\ud83d\udc68\u200d\ud83d\ude80 buzz, A small/lightweight statically typed scripting language (in development)", 20 | "stars": 552, 21 | "active": true 22 | }, 23 | { 24 | "name": "Cyber", 25 | "url": "https://github.com/fubark/cyber", 26 | "description": "Fast and concurrent scripting.", 27 | "stars": 787, 28 | "active": true 29 | }, 30 | { 31 | "name": "LoLa", 32 | "url": "https://github.com/MasterQ32/LoLa", 33 | "description": "LoLa is a small programming language meant to be embedded into games.", 34 | "stars": 151, 35 | "active": true 36 | }, 37 | { 38 | "name": "Luf", 39 | "url": "https://github.com/Luukdegram/luf", 40 | "description": "Statically typed, embeddable, scripting language written in Zig.", 41 | "stars": 30, 42 | "active": false 43 | }, 44 | { 45 | "name": "Zua", 46 | "url": "https://github.com/squeek502/zua", 47 | "description": "An implementation of Lua 5.1 in Zig, for learning purposes", 48 | "stars": 115, 49 | "active": false 50 | }, 51 | { 52 | "name": "Jazmin", 53 | "url": "https://github.com/desttinghim/jazmin", 54 | "description": "Zig implementation of Jasmin", 55 | "stars": 9, 56 | "active": true 57 | }, 58 | { 59 | "name": "Mocha", 60 | "url": "https://github.com/hqnna/mocha", 61 | "description": "An elegant configuration language for both humans and machines.", 62 | "stars": 55, 63 | "active": true 64 | }, 65 | { 66 | "name": "Foray", 67 | "url": "https://github.com/Grinshpon/Foray", 68 | "description": "A concatenative language written in Zig", 69 | "stars": 7, 70 | "active": true 71 | }, 72 | { 73 | "name": "APScript", 74 | "url": "https://github.com/sno2/apscript-zig-archive", 75 | "description": "An interpreter for the AP© Computer Science Principles pseudocode language.", 76 | "stars": 5, 77 | "active": false 78 | }, 79 | { 80 | "name": "Bun", 81 | "url": "https://github.com/oven-sh/bun", 82 | "description": "Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one.", 83 | "stars": 41608, 84 | "active": true 85 | }, 86 | { 87 | "name": "zbfi", 88 | "url": "https://github.com/PrajwalCH/zbfi", 89 | "description": "BrainFuck :robot: language interpreter.", 90 | "stars": 1, 91 | "active": false 92 | }, 93 | { 94 | "name": "brainfuck-interpreter", 95 | "url": "https://github.com/rubenkristian/brainfuck-interpreter", 96 | "description": "Brainfuck interpreter.", 97 | "stars": 0, 98 | "active": false 99 | }, 100 | { 101 | "name": "Aro", 102 | "url": "https://github.com/Vexu/arocc", 103 | "description": "A C compiler with the goal of providing fast compilation and low memory usage with good diagnostics.", 104 | "stars": 508, 105 | "active": true 106 | }, 107 | { 108 | "name": "zQasm", 109 | "url": "https://github.com/AbeerVaishnav13/zQasm", 110 | "description": "OpenQASM parser.", 111 | "stars": 0, 112 | "active": false 113 | }, 114 | { 115 | "name": "monkeyZ", 116 | "url": "https://github.com/andreabertanzon/monkeyZ", 117 | "description": "An interpreter for the monkeyZ language.", 118 | "stars": 0, 119 | "active": true 120 | }, 121 | { 122 | "name": "djot.zig", 123 | "url": "https://github.com/leroycep/djot.zig", 124 | "description": "A parser for parsing djot files and converting them to HTML.", 125 | "stars": 5, 126 | "active": false 127 | }, 128 | { 129 | "name": "kule-lang", 130 | "url": "https://github.com/musi-musi/kule-lang", 131 | "description": "kule shader language.", 132 | "stars": 1, 133 | "active": false 134 | }, 135 | { 136 | "name": "Orng", 137 | "url": "https://github.com/Rakhyvel/Orng", 138 | "description": "Orng is a versatile general purpose programming language that gives developers control while still being expressive.", 139 | "stars": 2, 140 | "active": true 141 | }, 142 | { 143 | "name": "zigself", 144 | "url": "https://github.com/sin-ack/zigself", 145 | "description": "An implementation of the Self programming language.", 146 | "stars": 110, 147 | "active": true 148 | }, 149 | { 150 | "name": "lox-zig", 151 | "url": "https://github.com/adrianchong518/lox-zig", 152 | "description": "A bytecode VM compiler / interpreter for the Lox language.", 153 | "stars": 0, 154 | "active": true 155 | }, 156 | { 157 | "name": "keto", 158 | "url": "https://github.com/Wuschli/keto", 159 | "description": "keto is an experimental scripting language based on \"Crafting Interpreters\" by Robert Nystrom.", 160 | "stars": 0, 161 | "active": true 162 | }, 163 | { 164 | "name": "ts-parser-zig", 165 | "url": "https://github.com/Himujjal/ts-parser-zig", 166 | "description": "A Hand Written TypeScript parser.", 167 | "stars": 0, 168 | "active": true 169 | }, 170 | { 171 | "name": "zed", 172 | "url": "https://github.com/jecolon/zed", 173 | "description": "The zed Programming Language is inspired by AWK in its main mode of operating on text files divided into records (usually lines), and columns within thos recoeds.", 174 | "stars": 10, 175 | "active": false 176 | }, 177 | { 178 | "name": "ZigScript", 179 | "url": "https://github.com/marler8997/zigscript", 180 | "description": "A companion scripting language for Zig developers.", 181 | "stars": 8, 182 | "active": true 183 | } 184 | ] 185 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python_dotenv == 0.19.2 2 | requests == 2.25.1 3 | -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- 1 | import json 2 | import requests 3 | import datetime 4 | import sys 5 | import os 6 | import locale 7 | import dotenv 8 | 9 | 10 | def readme_header(file): 11 | """ 12 | Write the header of the `README.md` being generated. 13 | 14 | This includes an explanation of what the repository is for, and the 15 | criteria for language inclusion, as well as the header of the Markdown 16 | table being generated. 17 | """ 18 | 19 | header = ( 20 | "# Languages Written in Zig\n" 21 | "\n" 22 | "This is a list of languages implemented in\n" 23 | "Zig. It is intended as a source of inspiration and comparison, and as a\n" 24 | "directory of potentially interesting projects in this vein. Inspired by [langs-in-rust](https://github.com/alilleybrinker/langs-in-rust).\n" 25 | "\n" 26 | "## What Can Be Included?\n" 27 | "\n" 28 | "1. Is it a language?\n" 29 | "2. Is it written in Zig?\n" 30 | "\n" 31 | "Then it can be included in this list!\n" 32 | "\n" 33 | "## List of Languages\n" 34 | "\n" 35 | "| Name | ⭐ Stars | ☀️ Status | Description |\n" 36 | "|:-----|:---------|:-----------|:-----------|\n" 37 | ) 38 | 39 | file.write(header) 40 | 41 | 42 | def readme_footer(file): 43 | """ 44 | Write the footer of the `README.md` being generated. 45 | 46 | This includes any additional information which is to be written _after_ the 47 | table of languages. 48 | """ 49 | 50 | footer = ( 51 | "\n" 52 | "## License\n" 53 | "\n" 54 | '* `update.py` - [MIT](https://github.com/thechampagne/langs-in-zig/blob/main/LICENSE-MIT)\n' 55 | "* Everything else - [CC-BY-4.0](https://github.com/thechampagne/langs-in-zig/blob/main/LICENSE)\n" 56 | "\n" 57 | ) 58 | 59 | file.write(footer) 60 | 61 | 62 | def key(e): 63 | """ 64 | Gets the star count for an entry in the language list. 65 | 66 | This is used to sort languages when the table is generated. 67 | """ 68 | 69 | return e["stars"] 70 | 71 | 72 | def extract_languages(): 73 | """ 74 | Load languages from the `languages.json` file, returning 75 | `active_langs`, `inactive_langs`, and `lang_names` to be 76 | used when generating the language table. 77 | """ 78 | 79 | with open("languages.json", "r", encoding="utf-8") as file: 80 | data = json.load(file) 81 | 82 | active_langs = [] 83 | inactive_langs = [] 84 | lang_names = [] 85 | 86 | for lang in data: 87 | lang_names.append({"name": lang["name"], "url": lang["url"]}) 88 | 89 | if lang["active"]: 90 | active_langs.append(lang) 91 | else: 92 | inactive_langs.append(lang) 93 | 94 | active_langs.sort(reverse=True, key=key) 95 | inactive_langs.sort(reverse=True, key=key) 96 | 97 | return active_langs, inactive_langs, lang_names 98 | 99 | 100 | def api_request(token): 101 | """ 102 | Update `languages.json` based on the latest API data for each language. 103 | 104 | Note that this only updates the 'activity' and 'stars' values. 105 | """ 106 | 107 | with open("languages.json", "r+", encoding="utf-8") as file: 108 | # Read the current state of the file. 109 | languages = json.load(file) 110 | 111 | for count ,lang in enumerate(languages): 112 | name = lang["name"] 113 | 114 | # TODO: Also support requests to other APIs like GitLab to get this info. 115 | if "github.com" in lang["url"]: 116 | print(f"Updating...\t{name:<30}\r", end="") 117 | 118 | # Get the URL for the proper API request. 119 | url = lang["url"].replace("github.com", "api.github.com/repos") 120 | 121 | # Make the API request with the passed-in token. 122 | response = requests.get( 123 | url, headers={f"Authorization": f"token {token}"} 124 | ) 125 | # Print an error if something fails, but keep going. 126 | if response.status_code != 200: 127 | print(f"API request failed for {url}", file=sys.stderr) 128 | continue 129 | 130 | # Get the latest data and update the list. 131 | data = response.json() 132 | languages[count] = { 133 | "name": lang["name"], 134 | "url": lang["url"], 135 | "description": lang["description"], 136 | "stars": data["stargazers_count"], 137 | "active": is_active(data["pushed_at"]), 138 | } 139 | else: 140 | print(f"Skipping... {name:<30}\r", end="") 141 | 142 | # Update the file. 143 | file.seek(0) 144 | json.dump(languages, file, indent=4) 145 | file.truncate() 146 | 147 | # Print a newline at the end. 148 | nothing = "" 149 | print(f"Done! {nothing:>30}") 150 | 151 | 152 | def is_active(raw_updated_at): 153 | """ 154 | Determine whether a project has been updated recently enough to treat as 155 | "active" in the table. 156 | """ 157 | 158 | updated_at = datetime.datetime.strptime(raw_updated_at, "%Y-%m-%dT%H:%M:%SZ") 159 | delta = datetime.timedelta(weeks=24) 160 | date = updated_at + delta 161 | now = datetime.datetime.now() 162 | return date >= now 163 | 164 | 165 | def write_readme(): 166 | """ 167 | Write the current contents of `languages.json` out to the `README.md` file. 168 | """ 169 | 170 | # Get the current data from the JSON file. 171 | active, inactive, languages = extract_languages() 172 | 173 | with open("README.md", "w", encoding="utf-8") as out: 174 | out.seek(0) 175 | 176 | # Write the header. 177 | readme_header(out) 178 | 179 | # Write the active language entries. 180 | for i in active: 181 | out.write( 182 | f"| [{i['name']}] | {i['stars']:,d} | ☀️ Active | {i['description']} |\n" 183 | ) 184 | 185 | # Write the inactive language entries. 186 | for i in inactive: 187 | out.write( 188 | f"| [{i['name']}] | {i['stars']:,d} | 🌙 Inactive | {i['description']} |\n" 189 | ) 190 | 191 | # Write the footer. 192 | readme_footer(out) 193 | 194 | # Write the Markdown link entries. 195 | for i in languages: 196 | out.write(f"[{i['name']}]: {i['url']}\n") 197 | 198 | out.truncate() 199 | 200 | 201 | if __name__ == "__main__": 202 | dotenv.load_dotenv() 203 | 204 | try: 205 | if len(sys.argv) != 2: 206 | print("usage: python update.py [api] [readme]") 207 | exit(1) 208 | elif sys.argv[1] == "readme": 209 | write_readme() 210 | exit(0) 211 | elif sys.argv[1] == "api": 212 | api_request(os.getenv("GITHUB_API_TOKEN")) 213 | write_readme() 214 | exit(0) 215 | else: 216 | print(f"error: unknown flag: {sys.argv[1]}") 217 | exit(1) 218 | except Exception as ex: 219 | print(f"error: {ex}") 220 | exit(1) 221 | --------------------------------------------------------------------------------