meson/test cases/unit/6 std override/prog98.cpp

7 lines
119 B
C++
Raw Normal View History

#include<iostream>
int main(int argc, char **argv) {
2018-09-16 17:39:54 +08:00
std::cout << "I am a c++98 test program.\n";
return 0;
}