Modernes C++ programmieren

Okt 23, 2024

lst-0143-godb.cpp

//#(compile) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// 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();
}