Skip to content

Instantly share code, notes, and snippets.

@yifu
Created September 18, 2012 15:08
Show Gist options
  • Save yifu/3743638 to your computer and use it in GitHub Desktop.
Save yifu/3743638 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <string>
using namespace std;
int main()
{
wstring result = L"hello";
cout << "hello world." << endl;
wcout << result << "." << L"." << endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment