Files
vortex/runtime/mains/hello/hello.cpp
2019-11-16 12:23:59 -05:00

18 lines
110 B
C++

struct hello {
int a;
hello()
{
a = 55;
}
};
hello nameing;
int main()
{
nameing.a = 20;
int b;
}