d07 ex01 ok

This commit is contained in:
hugogogo
2022-03-10 19:12:00 +01:00
parent 3433fafd87
commit a38d7184e3
7 changed files with 198 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef DECREMENT_HPP
# define DECREMENT_HPP
# include <iostream>
# include <string>
template< typename T >
void Decrement(T & e) {
--e;;
}
#endif