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.
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
.
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.
Chojan Shang - @PsiACE - psiace@outlook.com
Project Link: https://github.com/psiace/emo
This project is licensed under the terms of the MIT license.
- Crafting Interpreters: A handbook for making programming languages. A lot of code for
"emo"
comes directly or indirectly from here.