initial check in

This commit is contained in:
2012-12-06 21:43:03 +04:00
commit 4bc273824d
179 changed files with 29415 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
// test_wfstream.cpp : Defines the entry point for the console application.
//
#include <iostream>
#include <string>
//const wchar_t wsz = Լ"աբգդեզէըթժիլ";
int main(int argc, const char * argv[])
{
std::wstring wstr;
std::wcin >> wstr;
std::wcout << "You typed: " << wstr << std::endl;
std::wstring::iterator it = wstr.begin();
for ( ; it != wstr.end(); ++it )
std::wcout << (int)*it << ", ";
std::wcout << std::endl;
return 0;
}