View Problem

Define an empty list

Assign the variable "list" to a list with no elements
DiskEdit
python
list = []
ExpandDiskEdit
cpp C++/CLI .NET 2.0
Generic::List<String^>^ list = gcnew Generic::List<String^>();
ExpandDiskEdit
cpp
std::list<std::string> list;

Submit a new solution for python or cpp
There are 23 other solutions in additional languages (clojure, csharp, erlang, fantom ...)