lst-0421-godb.cpp
//#(execute) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/c3695v4r8
#include "mein_string.hpp"
static const mein_string ZEBRA { "zebra" };
int main() {
mein_string tier{ "pferd" };
if(ZEBRA.equals(tier)) return 0;
else return 1;
}