# Division

## Syntax

```swift
x / y
```

## Explanation

The division operator returns the quotient of the two operands as a new number.

## Examples

```swift
1 / 2    // 0.5
0 / 1    // 0
4 / 2    // 2
```
