зеркало из
https://github.com/iharh/notes.git
synced 2025-10-29 20:56:06 +02:00
13 строки
216 B
Plaintext
13 строки
216 B
Plaintext
// nested import groups - on one line
|
|
use std::{fs::File, io::Read, path::{Path, PathBuf}};
|
|
|
|
// with some more breathing room
|
|
use std::{
|
|
fs::File,
|
|
io::Read,
|
|
path::{
|
|
Path,
|
|
PathBuf
|
|
}
|
|
};
|