Razen Documentation

Learn how to use the Razen Programming Language.

Installation Guide

# Installation Guide Welcome to Razen! This guide will help you install Razen on your system. ## System Requirements Before installing Razen, make sure your system meets the following requirements: - **Operating System**: Windows 10+, macOS 10.14+, or Linux (Ubuntu 18.04+, Debian 10+) - **Disk Space**: At least 500MB of free disk space - **Memory**: Minimum 2GB RAM (4GB recommended) - **Processor**: Any modern processor (2GHz+) ## Installation Steps ### For Windows ```bash # Download the installer curl -o installer.sh "https://raw.githubusercontent.com/BasaiCorp/razen-lang/main/installer.sh" && chmod +x installer.sh && ./installer.sh ``` Follow the on-screen instructions to complete the installation. - For windows installation you need to install `git bash` if not already installed ### For macOS ```bash # Install via Razen installer curl -o installer.sh "https://raw.githubusercontent.com/BasaiCorp/razen-lang/main/installer.sh" && chmod +x installer.sh && ./installer.sh ``` Follow the on-screen instructions to complete the installation. ### `Homebrew` is Coming Soon ```bash # Install via Homebrew (Coming Soon) brew install razen-lang # Verify installation razen version ``` ### For Linux #### Using `curl` ```bash # Install via Razen installer and curl method curl -o installer.sh "https://raw.githubusercontent.com/BasaiCorp/razen-lang/main/installer.sh" && chmod +x installer.sh && ./installer.sh ``` #### Using `wget` ```bash # Install via Razen Installer and wget method wget -O installer.sh "https://raw.githubusercontent.com/BasaiCorp/razen-lang/main/installer.sh" && chmod +x installer.sh && ./installer.sh ``` ## Verifying Your Installation To verify that Razen has been installed correctly, open a terminal or command prompt and run: ```bash razen version ``` or ```bash razen-version ``` You should see output similar to: ``` Razen Programming Language beta v0.1.695 ``` ## Next Steps Now that you have Razen installed, check out the [Hello World](/docs/getting-started/hello-world.mdx) tutorial to write your first Razen program!