initial commit, let's just do this instead of studying. also hail Bjarne

This commit is contained in:
2016-11-27 13:55:32 +01:00
commit 4427596609
4 changed files with 56 additions and 0 deletions

9
Function.hpp Normal file
View File

@ -0,0 +1,9 @@
template <typename Fun>
class Function;
template <typename Ret, typename... Args>
class function
{
// TODO: everything :'D
};