ZVON > References > Haskell reference |
Intro / Search / ZVON |
| Indexes | Syntax | Prelude | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | >> System << | Time | Locale | CPUTime | Random |
Module: | System |
---|---|
Function: | getEnv |
Type: | String -> IO String |
Description: | Computation getEnv var returns the value of the environment variable var. If variable var is undefined, the isDoesNotExistError exception is raised. |
Related: |
Input: getEnv "HOME"
Output: "/home/nicmila"
Input: getEnv "XXX"
Output: File or variable not found: XXX