Skip to content

Instantly share code, notes, and snippets.

@def-
Created March 18, 2019 11:23
Show Gist options
  • Save def-/5cba6332b63c88c4ba49ecb0f6a3bbaf to your computer and use it in GitHub Desktop.
Save def-/5cba6332b63c88c4ba49ecb0f6a3bbaf to your computer and use it in GitHub Desktop.
// g++ -o x x.cpp && ./x
#include <iostream>
struct CMeteor
{
CMeteor(unsigned x)
{
std::cout << x << std::endl;
}
};
int main()
{
unsigned Amount = 5;
for (unsigned i = 0; i < Amount; i++)
{
new CMeteor(i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment