## Command: `list clear` Given the name of a list, clears it (removes all items). ## Usage ```gls list clear : myList ``` In C#: ```csharp myList.Clear(); ``` In Python: ```python myList.clear() ```