19 lines
297 B
C++
19 lines
297 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");
|
|
int x = int(42);
|
|
string s2 = "hello";
|
|
int y = 42;
|
|
return 0;
|
|
}
|