From db320f61413291fdc0216d4663c94ec2adfcf764 Mon Sep 17 00:00:00 2001 From: Daniel Adebusuyi Date: Wed, 3 Sep 2025 04:00:06 -0700 Subject: [PATCH] Add beginner-friendly instructions for running examples --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 5386d89f..49a0db53 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,17 @@ fn main() -> Result<(), Box> { Ok(()) } ``` +### Running Examples for Beginners +If you’re new to Rust or Git, follow these steps to get started easily: + +1. Install Rust: https://www.rust-lang.org/tools/install +2. Clone the repo: + git clone https://github.com/ragefye/LuminAIR.git +3. Navigate into the repo folder: + cd LuminAIR +4. Run a simple example: + cargo run --example hello_world +5. Explore other examples in the examples/ folder ## 📖 Documentation