mirror of
https://gitflic.ru/project/w0lf/bulls-and-cows-cpp.git
synced 2026-03-28 16:02:46 +03:00
18 lines
177 B
C++
18 lines
177 B
C++
// bulls-and-cows.cpp
|
|
//
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include <string>
|
|
#include <sstream>
|
|
#include "CGame.h"
|
|
|
|
int wmain(int argc, wchar_t* argv[])
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
}
|