The function takes an input string and appends the first character of the input string to the end of the string.

[CODE]:
```python
def my_function(input_string):
    return input_string + input_string[0]
```