| 
 Pentium III Katmai @ 450 MHz, 192 MB RAM, Gentoo Linux 2.6.12, No GPU.
 10 zones.
 
 Comfortably seats 5 people.
 
				__________________namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
 C++ is wonderful.
 |