Skip to content

Instantly share code, notes, and snippets.

View erlonbie's full-sized avatar

Erlon Bié erlonbie

  • Softlive
  • Manaus, AM, Brazil.
  • 17:46 (UTC -12:00)
  • X @erlonbie
View GitHub Profile
@erlonbie
erlonbie / main.cpp
Created September 27, 2023 01:26
Template class
template <typename T> void Print2(T &value) {
std::string s = value + std::string("teste");
std::cout << s << std::endl;
}
template <typename T, int N> class Array {
private:
T m_Array[N];
public:
Array() {}