Skip to content

Instantly share code, notes, and snippets.

@minjang
Last active December 23, 2015 17:07
Show Gist options
  • Save minjang/c151cd8d71380e8b3485 to your computer and use it in GitHub Desktop.
Save minjang/c151cd8d71380e8b3485 to your computer and use it in GitHub Desktop.
// 6. 초기화 리스트
cout << "[TEST 6] initializer list\n";
for (auto &&p : enumerate({"foo", "bar", "baz"}))
cout << p.first << ": " << p.second << '\n';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment