c# coding code example
Example 1: c# coding
/* I recommend watching the series by Brackeys (youtube), its a great
way of getting into c#.
C# is a really great language and I recommend learning it.
Example 2: c#
/* A C# (C-sharp ex.) */
using System;
namespace helloWorld
{
class Program
{
static void Main()
{
Console.WriteLine("What's your age?")
string age = Console.ReadLine()
Console.WriteLine($"You are {age} years old!")
}
}
}