Practice functions pattern with value 16.
Ready — edit the code above and click Run.
using System;
class Program
{
static void Main()
{
int x = 16;
Console.WriteLine(x);
}
}
Try solving on your own first, then reveal the official answer.
Extend starter into full functions solution.