# Negation

## Syntax

```swift
-x
```

## Explanation

Unary `-`, performs negation on the operand.

## Examples

```swift
-2     // -2
-(-2)  // 2
```
