Run ❯
Get your
own C#
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
using System; namespace HelloWorld { class Program { static void Main(string[] args) { /* The code below will print the words Hello World to the screen, and it is amazing */ Console.WriteLine("Hello World!"); } } }
Hello World!