Initial commit

This commit is contained in:
Bartek Kryza
2021-02-07 23:13:52 +01:00
commit 8ccd4bc81e
26 changed files with 27626 additions and 0 deletions

7
include/source_file.hpp Normal file
View File

@@ -0,0 +1,7 @@
#include <string>
template <class T>
T add(T a, T b){
return a + b;
}