Skip to content

PsiACE/emo

Repository files navigation

"emo"

workflow quality

English | 中文版

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.

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 - psiace@outlook.com

Project Link: https://github.com/psiace/emo

License

This project is licensed under the terms of the MIT license.

Credits

  • Crafting Interpreters: A handbook for making programming languages. A lot of code for "emo" comes directly or indirectly from here.