14 lines
234 B
C++
14 lines
234 B
C++
#include "hack/math/max.hpp"
|
|
#include "hack/logger/logger.hpp"
|
|
|
|
auto main(int argc, char *argv[]) -> int
|
|
{
|
|
int a = 4, b = 5;
|
|
int& c = a;
|
|
hack::log()(hack::math::max(4, 5));
|
|
hack::log()(hack::math::max(c, b));
|
|
|
|
return 0;
|
|
}
|
|
|