Language
C++
Compiler
gcc HEAD 10.0.0 20190605 (experimental)
Options
Warnings
Boost 1.70.0
C++2a(GNU)
no pedantic
Raw compiler options
-O99
#include <iostream>
int main() {
std::cout << "Get your two!\n";
return 2;
}
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.70.0/gcc-head/include -std=gnu++2a -O99
Get your two!
Exit Code:
2