Get-Env

(get-env string) -> string or #f

Given a key that may be found in *env*, returns the value associated with that key, or #f. Similar to has-env, but does not return the key-value pair.

Example:

>> (get-env "TERM_PROGRAM")
:: "Apple_Terminal"
>> (get-env "TERMPROGRAM")
:: #f