Minor fixes

Signed-off-by: teo3300 <matteo.rogora@live.it>
This commit is contained in:
teo3300
2024-01-17 19:17:04 +09:00
parent 4c55c9219f
commit 4f7140009d
4 changed files with 23 additions and 25 deletions

View File

@ -72,6 +72,6 @@ pub fn ns_init() -> Env {
"env" => Fun(|a| match env::var(car(a)?.if_string()?) {
Ok(s) => Ok(Str(s)),
_ => Ok(Nil),
}, "Retrieve environment variable")
}, "Retrieve the specified environment variable, returns NIL if that variable does not exist")
)
}