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-18 14:44:36 +01:00
public class Exercise1
{
public static void Main( )
{
System.Console.WriteLine("Hello");
System.Console.WriteLine("Alexandra Abramov!");
}
}
Output :
Hello
Alexandra Abramov