Do not write json error message to stderr

This commit is contained in:
Pavel Krymets 2016-03-31 14:39:33 -07:00
parent 1428eb81cf
commit 8d1ddcdf2d
5 changed files with 35 additions and 2 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}