---
title: Std.Env
---

Access to system environment variables.

## Effects

### Env

```saga
effect Env {
  fun get : String -> Maybe String
}
```

Effect for reading environment variables.

## Handlers

### system_env

```saga
handler system_env for Env
```

Handler that reads from the real system environment.

