mirror of
https://github.com/Steffo99/micronfig.git
synced 2024-11-25 17:44:18 +00:00
9 lines
139 B
Rust
9 lines
139 B
Rust
|
micronfig::config! {
|
||
|
GARASAUTO: String > i64,
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
std::env::set_var("GARASAUTO", "-1");
|
||
|
assert_eq!(GARASAUTO(), &(-1i64));
|
||
|
}
|