Run ❯
Get your
own C#
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
using System; namespace MyApplication { class Program { static void Main(string[] args) { string greeting = "Hello."; string greeting2 = "Nice to meet you!"; Console.WriteLine(greeting); Console.WriteLine(greeting2); } } }
Hello.
Nice to meet you!