Day 32

C# Syntax

In the previous chapter, we created a C# file called Program.cs, and we used the following code to print "Hello World" to the screen:

Program.cs

using System;namespace HelloWorld{class Program{static void Main(string[] args){
Console.WriteLine("Hello World!");}}}

Result:

Hello World!


Comments

Popular posts from this blog

Day 2 Talking about computer science 💻

Day 5💻

Day 12 “C comments”