C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello!");
#if MYDEBUG
Console.WriteLine("My Debug");
#endif
// на экране увидим
// Hello
// My Text
}
}
}