README.md

# uwu

a simple uwu-ifier.

## Uses

Use 1:

```shell
$ uwu -t <STRING>
```

prints uwu-ified string.

Example:

```shell
$ uwu -t Hello
hewwo
$ uwu -t "Hello, World!"
hewwo, wowwd OwO
```

Use 2:

```shell
$ uwu
```

starts interactive session.

Example:

```shell
$ uwu
Hello, World!
hewwo, wowwd OwO
```

Example 2:

```shell
$ fortune | uwu
she bwinded me with science OwO
```

I wouldn't recommend using this with fortune-mod, uwu can only deal with one line (new lines cause it to end early). Any thing that doesn't print new lines should work fine though.

Use 3:

```
uwu.uwuify(<STRING>)
```

Returns uwu-ified string

Example:

```
import gleam/io
import uwu

pub fn main {
    let output = uwu.uwuify("Hello, World!")
    io.println(output)
}
```

Output: `hewwo, wowwd OwO`