いぇーい、VS2010だぞー♪
なんつったってC++屋ですからね、
C++0Xにどんだけ迫ってるかが見ものなわけで。
一発目の"Hello, world"はコレ。
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
int main() {
std::vector<std::string> vs;
vs.push_back("zero");
vs.push_back("one");
vs.push_back("two");
std::for_each(vs.begin(),vs.end(),
[](const std::string& x) -> void { std::cout << x << std::endl; });
}
きゃっほーいラムダ式書けるぅ。うれしぃようおうぉぅ。