RosettaCodeData/Task/Here-document/C-sharp/here-document.cs

14 lines
158 B
C#
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
using System;
class Program
{
static void Main(string[] args)
{
Console.Write(@"
multiline
strings are easy
to put together
in C#");
}
}