Skip to content

Instantly share code, notes, and snippets.

@osyo-manga
Created July 1, 2011 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save osyo-manga/1058050 to your computer and use it in GitHub Desktop.
Save osyo-manga/1058050 to your computer and use it in GitHub Desktop.
#include <initializer_list>
#include <iostream>
int
main(){
auto array = {"yaki", "niku", "tabe", "tai", "JP"};
for(auto& v : array){
std::cout << v;
}
// yakinikutabetaiJP
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment