The Python Interpreter for the Neo Programming Language
Releases
.
Report Bug
.
Request Feature
NeoLang is an open-source programming language, made specifically for quick prototyping and new programmers. With that in mind it is built with an extremely simple syntax and a built-in compiler.
To get started with using NeoLang, follow these steps.
If you don't already have Python, install that by going to python.org and downloading the latest version of python.
To check if python is installed, run the following commands in the terminal.
py --version
pip --version
python3 --version
python3 -m pip --version
To install NeoLang, use the Package Installer for Python by running the following commands.
pip install neolang
python3 -m pip install neolang
To check if NeoLang is installed, run the command neo --version
. If this does not work, it's most likely because your Python installation has not been registered in your $PATH. To do so, i recommend following this guide.
Contributions are a fundamental concept of open-source - this is also true for NeoLang. Every contribution is greatly appreciated.
- If you have suggestions for adding or removing projects, feel free to open an issue to discuss it, or directly create a pull request after you edit the README.md file with necessary changes.
- Please make sure you check your spelling and grammar.
- Create individual pull requests for each suggestion.
- Please also read through the Code Of Conduct before posting your first idea as well.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the GNU General Public License v3 (GPLv3). See LICENSE for more information.