1 2 3 4 5 6
use elaborate::std::fs::create_dir_wc; fn main() -> anyhow::Result<()> { create_dir_wc("/dir")?; Ok(()) }