1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
```sh var = get_env key ``` Returns the environment variable value for the provided key. ### Parameters First argument is the environment variable key. ### Return Value The environment variable value. ### Examples ```sh home = get_env HOME ```