cpp-template/template.cpp

15 lines
153 B
C++
Raw Normal View History

2022-10-08 21:01:53 +02:00
#include <iostream>
#include "wtf.hpp"
int main()
{
int number = 42;
Wtf<int> wtf(number);
std::cout << wtf.getTest() << std::endl;
return 0;
}