mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-26 05:41:14 +00:00
10 lines
150 B
C++
10 lines
150 B
C++
#include <sstream>
|
|
int main(int, char* [])
|
|
{
|
|
std::ostringstream os;
|
|
os << "12345";
|
|
if (os.str().size() == 5) {
|
|
return 0;
|
|
}
|
|
return -1;
|
|
}
|