RosettaCodeData/Task/Here-document/C-sharp/here-document.cs
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

13 lines
158 B
C#

using System;
class Program
{
static void Main(string[] args)
{
Console.Write(@"
multiline
strings are easy
to put together
in C#");
}
}