Installation

📦 Install from Releases

Download the latest release for your platform:

# Linux/macOS
curl -L https://github.com/hudhudmind/hudhudscript/releases/latest/download/hudhud-linux -o hudhud
chmod +x hudhud
sudo mv hudhud /usr/local/bin/

# Windows (PowerShell)
Invoke-WebRequest -Uri https://github.com/hudhudmind/hudhudscript/releases/latest/download/hudhud-windows.exe -OutFile hudhud.exe

🔨 Build from Source

Requirements:

  • Rust 1.70+
  • Cargo
# Clone the repository
git clone https://github.com/hudhudmind/hudhudscript.git
cd hudhudscript

# Build and install
cargo build --profile release-prof
cargo install --path .

# Verify installation
hudhud --version

✅ Verify Installation

Test your installation:

# Create a test file
echo 'let message = "Hello, World!"; print(message);' > test.hudhud

# Run it
hudhud test.hudhud

💡 Next Steps

After installation, check out the Getting Started guide.