lst-0359-book.cpp
// https://godbolt.org/z/7KWqTPo1K
#include <iostream> // cout
constexpr int hole_wert() {
if consteval {
return 42;
} else {
return 668;
}
}
int main() {
auto a = hole_wert();
std::cout << a << '\n'; // Ausgabe: 668
constexpr auto b = hole_wert();
std::cout << b << '\n'; // Ausgabe: 42
}