2012-05-05 08:01:40 -07:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
struct Point {
|
|
|
|
int x, y;
|
|
|
|
Point(int x, int y): x{x}, y{y}{}
|
|
|
|
};
|
|
|
|
|
|
|
|
const vector<string> s = {"a", "b", "c"};
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
string s1 {"first"};
|
|
|
|
int x {42};
|
2012-05-25 07:17:47 -07:00
|
|
|
|
|
|
|
vector<string> names_v = {"stephen", "michael", "bryan", "derek"};
|
|
|
|
|
|
|
|
// map example
|
|
|
|
// with nested types
|
|
|
|
|
2012-05-05 13:58:20 -07:00
|
|
|
x = 0;
|
2012-05-05 13:54:38 -07:00
|
|
|
return x;
|
2012-05-05 08:01:40 -07:00
|
|
|
}
|