> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Max

> Return the largest value from two or more numbers.

The **Max** action examines a repeatable list and returns its largest number.

## Inputs

| Input       | Type            | Required | Description                     |
| ----------- | --------------- | -------- | ------------------------------- |
| **Numbers** | List of numbers | Yes      | At least two values to compare. |

## Outputs

| Output  | Type   | Description                  |
| ------- | ------ | ---------------------------- |
| **Max** | Number | The largest supplied number. |

For example, `8`, `-3`, and `4.5` produce `8`.

<Warning>
  Zero and empty repeat slots are currently ignored by this action. If zero
  needs to participate in the comparison, compare it explicitly with the
  returned value in a later step.
</Warning>
