https://github.com/psiace/emo
The "emo" Programming Language.
https://github.com/psiace/emo
language programming-language
Last synced: 9 months ago
JSON representation
The "emo" Programming Language.
- Host: GitHub
- URL: https://github.com/psiace/emo
- Owner: PsiACE
- License: mit
- Created: 2019-12-25T03:51:19.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-17T15:56:24.000Z (over 5 years ago)
- Last Synced: 2024-11-01T08:50:36.490Z (about 1 year ago)
- Topics: language, programming-language
- Language: C
- Size: 240 KB
- Stars: 18
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# `"emo"`


[English](./README.md) | [δΈζη](./README_zh.md)
> Emotions allow us to express ourselves better.
The `"emo"` programming language is dedicated to exploring simple yet expressive methods, powerful and easy to use.
_**WIP**_ This project is still in the stage of personal development and research, and only accepts the submission of optimization and patches, but any discussion on design and features is welcome.
If you are familiar with any C-like programming language, you can easily understand the syntax rules of `"emo"`. Of course, `"emo"` also draws some inspiration from other more modern programming languages to improve readability and programming experience.
## Usage
If you want to try it, consider installing the `meson` build system, and `ninja` must also be installed with it.
For example, on the fedora platform, run `dnf install meson`.
```bash
git clone git@github.com:PsiACE/emo.git # or https://github.com/psiace/emo.git
cd emo
meson setup build
# Just for compiler optimization. Otherwise it will be very slow.
meson configure build -Dc_args="-O3"
meson install -C build
```
Now it should be added to your system. Run `emo` in the terminal or check the documentation.
## Contact
Chojan Shang - [@PsiACE](https://github.com/psiace) -
Project Link: [https://github.com/psiace/emo](https://github.com/psiace/emo)
## License
This project is licensed under the terms of the [MIT license](./LICENSE).
## Credits
- [Crafting Interpreters](http://www.craftinginterpreters.com): A handbook for making programming languages. A lot of code for `"emo"` comes directly or indirectly from here.