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