The function takes a string input and returns the string reversed.

[CODE]: 
```python
def reverse_string(s):
    return s[::-1]
```