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