programming-examples/c-sharp/_Basic/C# Sharp program to print Hello and your name in a separate line.cs

12 lines
213 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
public class Exercise1
{
public static void Main( )
{
System.Console.WriteLine("Hello");
System.Console.WriteLine("Alexandra Abramov!");
}
}
Output :
Hello
Alexandra Abramov