Files
Cpp-in-Embedded-Systems/Chapter01/compile_time_square_func.cpp
Amar Mahmutbegovic de6d74e093 add Chapter01 examples
2024-04-27 20:43:40 +02:00

9 lines
106 B
C++

constexpr int square(int a) {
return a*a;
}
int main() {
constexpr int ret = square(2);
return ret;
}