Created
December 14, 2021 01:36
-
-
Save srz-zumix/40f1ffc30ce06ac2905506fc1a9e337d to your computer and use it in GitHub Desktop.
system header warning
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// not system include | |
// gcc: https://wandbox.org/permlink/MLrLASaM5o5A3UWm | |
// clang: https://wandbox.org/permlink/x6TT2NFROSmyLhV4 | |
// system include | |
// gcc: https://wandbox.org/permlink/XVHXnWIMyOfDMjl3 | |
// clang: https://wandbox.org/permlink/strTYwduT4ZLH5NK | |
// This file is a "Hello, world!" in C++ language by GCC for wandbox. | |
#include <iostream> | |
#include <cstdlib> | |
#include "test.h" | |
//#include <test.h> | |
int main() | |
{ | |
std::cout << "Hello, Wandbox!" << f() << std::endl; | |
} | |
// GCC reference: | |
// https://gcc.gnu.org/ | |
// C++ language references: | |
// https://cppreference.com/ | |
// https://isocpp.org/ | |
// http://www.open-std.org/jtc1/sc22/wg21/ | |
// Boost libraries references: | |
// https://www.boost.org/doc/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int f() { | |
return 1, 2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment