Skip to content

Instantly share code, notes, and snippets.

@yifu
Created September 21, 2012 14:34
Show Gist options
  • Select an option

  • Save yifu/3761811 to your computer and use it in GitHub Desktop.

Select an option

Save yifu/3761811 to your computer and use it in GitHub Desktop.
c++11 tests.
#include <iostream>
using namespace std;
int main()
{
cout << "hello world." << endl;
for ( int i : { 2, 3, 4, 5, 79, 44 } )
{
cout << i << ", ";
}
cout << endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment