cpp11/init.cc
Stephen M. McQuay 815175e35e finished product
2012-05-05 13:45:49 -06:00

20 lines
330 B
C++

#include <string>
using namespace std;
struct Point {
int x, y;
Point(int x, int y): x(x), y(y){}
};
// const vector<string> v = ??;
// http://stackoverflow.com/a/4268956
int main() {
string s1("first");
string s3 = string("again");
int x = int(42);
string s2 = "hello";
int y = 42;
return 0;
}