lst-0143-book.cpp
// https://godbolt.org/z/58cTfvYhe
int zwei() { return 2; } // (ERR) einmal int als Rückgabetyp…
double zwei() { return 2.0; } // (ERR) … und einmal double
int main() {
int x = zwei();
double y = zwei();
}