------
## 最终结论
```python
def largest_neg(numbers):
    max_neg = None
    for num in numbers:
        if num < 0:
            if max_neg is None or num > max_neg:
                max_neg = num
    return max_neg
```