Best way to organize a Go interface
- by Metropolis
Hey Everyone,
Its been a long time since I have programmed in C++, and if I remember correctly the best way to organize classes was to create your class in the .h file, and then your implementation in your .cpp file.
Well I am trying to learn Go now and I was reading over the Go for C++ Programmers article when I came upon interfaces. The…