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

# Arithmetic Operators

### `touch` \[a: int, float] \[b: int, float] -> \[int, float]

Returns a + b

### `#shrink` \[a: int, float] \[b: int, float] -> \[int, float]

Returns a - b

### `cavendish` \[a: int, float] \[b: int, float] -> \[int, float]

Returns a \* b

\*\*ETYMOLOGY: \*\*This was inspired by the Balatro joker.

### `big25` \[a: int, float] \[b: int, float] -> int

Returns a / b (integer division)

### `crockpot` \[a: int, float] \[b: int, float] -> \[int, float]

Returns a % b (remainder operation)

### `bigf` \[a: int, float] \[b: int, float] -> \[int, float]

Returns a / b (float division)

### `chill` \[a: bool] \[b: bool] -> bool

Returns a || b (a OR b)

### `grind` \[a: bool] \[b: bool] -> bool

Returns a && b (a AND b)

### `L` \[a: bool] -> bool

Returns !a (NOT a)

### `mogs` \[a: int, float] \[b: int, float] -> bool

Returns a > b

### `vibes` \[a: any] \[b: any] -> bool

Returns a == b (loose equality)
