lumin 0.1.16

A library for searching and displaying local files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
fn main() {
    // This is a sample Rust program
    println!("Hello, world!");
    
    let x = 42;
    let y = x * 2;
    
    // Calculate and print the result
    println!("The answer is: {}", y);
    
    // More code below
    for i in 1..5 {
        println!("Iteration: {}", i);
    }
    
    // End of program
    println!("Goodbye!");
}