lst-0591-book.cpp
// https://godbolt.org/z/aMPj3K7EE
#include <iostream>
struct Zahl {
int wert_;
};
template<typename TYP>
void print(TYP value) {
std::cout << value << "\n";
}
int main() {
print(5);
print(-10.25);
print("Flamingo");
Zahl sieben { 7 };
print(sieben); // (ERR) cout << sieben gibt es nicht
}