(getenv variable)
This procedure allow access to the UNIX evironment by supplying the desired variable name as a string.
The value of the environment variable is returned as a string, if the variable is non-existent, #f is returned instead.
> (getenv "HOME")
"/Users/john"
> (getenv "unknown")
#f
>