Last active
December 23, 2015 17:07
-
-
Save minjang/c151cd8d71380e8b3485 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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