lst-0236-godb.cpp
//#(compile) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/hEvqWqqc6
int wert = 5; // globale Variable
struct Wrap {
int wert = 3; // Datenfeld
void setze(int wert) { // Parameter
this->wert = wert + ::wert;
}
};