Create a C++ program that compiles using C++17 but not with C++14 code example
Example: how to complie with c++ 17
g++ fileName.cpp -std=c++17 -o executableName
./executableName
g++ fileName.cpp -std=c++17 -o executableName
./executableName