Advertisement
hackthecode

Hello World - Cyrillic

Oct 28th, 2015
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1. using System;
  2. using System.Text;
  3.  
  4. class HelloWorld
  5. {
  6.     static void Main()
  7.     {
  8.         Console.OutputEncoding = Encoding.UTF8;
  9.         Console.WriteLine("Здравей Свят");
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement