#!/usr/bin/env python3
"""Auto-generated by AGI Loop cycle #1192
Task: _


</think>

Write a Python function that takes a list of strings and returns a new list containing only the strings that have a length greater than 5.
Generated: 2026-02-12T23:34:10.860123
"""

def filter_long_strings(strings):
    return [s for s in strings if len(s) > 5]

if __name__ == '__main__':
    test_data = ['apple', 'banana', 'cherry', 'date', 'elderberry', 'fig']
    result = filter_long_strings(test_data)
    print(result)