# TEXTUS Welcome! This is the start of a brand new journey. --- ## 📖 What This Project Is This Rust application is a simple text editor like vim or emacs. It is not intended to replace them but a fun side project i have being working on. The reason why i used rust is that - Its a new popular language - I get some joy making my self suffer - Always wanted to learn how a text editor works --- # To compile and run my program just follow the below steps ## 🧱 Step 1: Install Rust Rust has an official installer called **rustup** that sets everything up. ### 👉 1. Open your terminal: - **Windows**: Use Command Prompt or PowerShell - **macOS/Linux**: Use the Terminal app ### 👉 2. Run this command: ```sh curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh ``` ### 👉 3.Download my code: ``` git clone https://github.com/ShaunT-bit/textus.git cd textus ``` ### 👉 4. Compile the code: ``` cargo build ``` ### 👉 4. Final Step run the program: ``` cargo test ```