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