rustbook-learning-guide 0.1.0

A comprehensive Rust learning guide with practical examples covering ownership, traits, polymorphism, and more
Documentation
//! # Rust Learning Guide
//! 
//! A comprehensive guide to learning Rust programming language with practical examples.

pub mod basics;
pub mod collections;
pub mod data_structures;
pub mod enums_and_matching;
pub mod traits_and_generics;
pub mod ownership_borrowing;
pub mod polymorphism;
pub mod async_programming;
pub mod smart_pointers;
pub mod iterators;
pub mod lifetimes;
pub mod projects;

/// A simple greeting function to demonstrate basic Rust syntax
pub fn greet(name: &str) -> String {
    format!("Hello, {}!", name)
}