Implement a statement to free space that was allocated with new. ``` C++ SomeStruct s = new SomeStruct; delete s; ```