lst-0227-godb.cpp
//#(compile) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/xnT7voqen
// Ausschnitt
Person erzeuge(string name, int alter, string ort) { // Rückgabetyp
Person result {name, alter, ort};
return result;
}
int main() {
Person otto = erzeuge("Otto", 45, "Kassel"); // Rückgabe speichern
drucke(otto);
}