1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//! # smop
//!
//! Batteries-included scripting utilities for Rust.
//!
//! `use smop::prelude::*` and write Rust scripts like Python,
//! but with a compiler that won't let them rot.
//!
//! ## Quick Start
//!
//! ```rust,no_run
//! use smop::prelude::*;
//!
//! fn main() -> Result<()> {
//! let home = path::home();
//! let content = fs::read_string(home.join(".bashrc"))?;
//! println!("Bashrc has {} lines", content.lines().count());
//! Ok(())
//! }
//! ```
// Note: Using deny instead of forbid to allow unsafe in tests (required for
// std::env::set_var/remove_var in Rust 2024 edition)
// Re-export core error handling
pub use ;