Welcome to Arithmo
Arithmo is a programing lenguage that allows you to do math operations in a simple way. In this guide, you will learn how to use the Arithmo language to do math operations. Now arithmo is in beta version, and we are working to add more content. 🚀 For now, you can read the documentation to learn more about the language in this page or in the official Github.
First Steps - Requeriments
If you want to use Arithmo, you need to have installed the following tools:
Python 3.8 or higher
Pip
Installation
Create a virtual environment
MacOS
and Linux
python3 -m venv venv
Windows
python -m venv venv
Activate the virtual environment
MacOS
and Linux
source venv/bin/activate
Windows(PowerShell)
venv\Scripts\Activate.ps1
Install Libraries
pip install -r requirements.txt
Run Arithmo
Linux
and MacOS
python src/main.py
Windows(PowerShell)
python src\main.py