# Prepend

Adds a value to the beginning of a list and returns a new list.

## Usage

```
const newlist = prepend(4, [1,2,3])
```
