blob: fa82b8e8c53bc581c9e60912838274b408146900 [file] [log] [blame] [edit]
#include <iostream>
struct vector2d{
int x,y,z;
};
int main(int argc, char * argv[])
{
vector2d v{1,2,3};
std::cout << v.x << "," << v.y << "," << v.z << std::endl;
}