Search results

  1. A

    Release Final Countdown

    So here comes the new nuclear power plant for pandora in China... http://westinghousenuclear.mediaroom.com/i...43&item=183
  2. A

    Implementing A Scripting Engine For My Game

    there is a module called RestrictedPython ( http://pypi.python.org/pypi/RestrictedPython ).
  3. A

    Simple C++ Questinon

    As an Emacs user, i must declare that the holy(flame) war is started. Burn the heretic! Kill the mutant! Purge the unclean!
  4. A

    Simple C++ Questinon

    CODE #include <iostream> int c=1; void foo(int a) { ++a; } void fooo(int &a) { ++a; } int main(int argc, char *argv[]) { std::cout << "c is " << c << " at start." << std::endl; foo(c); std::cout << "c is " << c << " after foo(c)." << std::endl; fooo(c)...
  5. A

    The Mighty Oldschool Ti83

    the C++ is really hard to learn. i have learned it for 4 years to just get familiar with most of its features. with some experience of x86 asm, the pointer have no problem. and the OO is just a straightforward concept. but other things (like template, generic programming, meta programming)...
Back
Top