Initial Course
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
#include "default_parameters.hpp"
|
||||
|
||||
namespace functions {
|
||||
|
||||
auto repeat(char ch, int count) -> std::string { (void)ch; (void)count; return {}; }
|
||||
auto power(int base, int exponent) -> long long { (void)base; (void)exponent; return 0; }
|
||||
auto clamp(int value, int min, int max) -> int { (void)value; (void)min; (void)max; return 0; }
|
||||
|
||||
} // namespace functions
|
||||
Reference in New Issue
Block a user