$40 Subscription to Legends
+
$15 Guide Fee
+
$13 Resubscription After Legends
------------------
$68
Wow. Biiig difference. I'd rather pay the $70 and get it transferred in 1-2 weeks rather than 2 months and save...ta-da! $2.
__________________
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.
|