Skip to content

Instantly share code, notes, and snippets.

@FinalTheory
Created December 26, 2018 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FinalTheory/22c37941a317ca255375b3f036a4bb3b to your computer and use it in GitHub Desktop.
Save FinalTheory/22c37941a317ca255375b3f036a4bb3b to your computer and use it in GitHub Desktop.
std::cout cause frash
// g++ test.cpp -static -o test -std=c++11
// ./test
struct Foo
{
Foo();
} foo;
#include <iostream>
Foo::Foo()
{
std::cout << "Hello World" << std::endl;
}
int main() {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment