Slashdot Mirror


User: renej_frog

renej_frog's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. Re:Bad idea on Is Visual Basic a Good Beginner's Language? · · Score: 1

    and ++x is better than x++

  2. Re:Multiple return values on Stroustrup on the Future of C++ · · Score: 1

    using boost::tuple you can do: boost::tuple foo(); int a, b; boost::tie(a, b) = foo(); pretty close huh? renej