January 2019
Beginner to intermediate
554 pages
13h 31m
English
We can do nested imports of items from modules. This helps in reducing the taken up by imports. Consider the following code:
// nested_imports.rsuse std::sync::{Mutex, Arc, mpsc::channel};fn main() { let (tx, rx) = channel();}
Read now
Unlock full access