|
|
|
|
|
by i_phish_cats
2602 days ago
|
|
I wrote a PDF parser in golang a few years ago and it was an extremely unpleasant experience. No polymorphism means I essentially have to cast everything to void* aka interface{}. Rewrote it in C (the rewrite was quite easy actually) which at least made the lib accessible to other languages. |
|
Its still a better C in many ways, strings and character sets is a big one.