ttoduepxo

Results 2 issues of ttoduepxo

可以增加繁簡轉換嗎? 在中國很多發音都不太一樣, 經常用台灣的發音用簡體找不到對應的字, 我自己是使用opencc轉換, 如果可以增加到發行版本就更好了

enhancement

在 ``` Circle::~Circle() { for(Point *p : fillPoints){ delete p; } for(Point *p : points){ delete p; } } ``` 应该要增加 ``` Circle::~Circle() { for(Point *p : fillPoints){ delete p;...