#include "Die.h" #include using namespace std; void foo(int n) { if (n > 20) die << "n is too big, n=" << n << ", max is 20"; } int main() { cout << "Hello there, how are you?\n"; foo(34); cout << "Should never get here.\n"; }