# `Faker.Currency`
[🔗](https://github.com/artkay/fakerer/blob/v1.0.0/lib/faker/currency.ex#L1)

Functions for generating currency related data

# `code`

```elixir
@spec code() :: String.t()
```

Returns a random currency code

## Examples

    iex> Faker.Currency.code()
    "WST"
    iex> Faker.Currency.code()
    "UYU"
    iex> Faker.Currency.code()
    "CRC"
    iex> Faker.Currency.code()
    "DOP"

# `symbol`

```elixir
@spec symbol() :: String.t()
```

Returns a random currency symbol

## Examples

    iex> Faker.Currency.symbol()
    "£"
    iex> Faker.Currency.symbol()
    "฿"
    iex> Faker.Currency.symbol()
    "ƒ"
    iex> Faker.Currency.symbol()
    "Rp"

---

*Consult [api-reference.md](api-reference.md) for complete listing*
