Getting started
Rush aims to be straightforward to install and learn. Try building with the language features available.
Clone Repository
Download Rush from GitHub and navigate to the project directory
Install & Build
Run make install to build and install Rush system-wide
Start Coding
Create your first Rush program and run it with rush file.rush
# Quick installation
git clone https://github.com/zhubert/rush.git
cd rush && make install
# Start the interactive REPL
rush
# Run with bytecode VM for better performance
rush -bytecode examples/comprehensive_demo.rush
# Run with JIT compilation (ARM64 only)
rush -jit examples/comprehensive_demo.rush
# Enable debug logging for development
rush -bytecode -log-level=debug your_program.rush
# JIT with performance statistics
rush -jit -log-level=info your_program.rush