## 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() ```
Command:
list clearGiven the name of a list, clears it (removes all items).
Usage
In C#:
In Python: