This repository contains various rust templates which will help developers learn faster
- Focus on safety, speed and concurrency
- memory safe without garbage collection
- println! is a macro defined in std::fmt
- Rust checks formatting correctness at compile time
fmt::Debug: Format text for debugging purposes using{:?}fmt::Display: Format text in user-friendly sense using{}