using System;
class Info
{
public string Name { get; set; }
public string Role { get; set; }
public string[] LanguagesSpoken { get; set; }
public Info()
{
Name = "seclist";
Role = "student";
LanguagesSpoken = new string[] { "en_UK" };
}
public void SayFact()
{
Console.WriteLine("tomorrow is never promised");
}
}
class Program
{
static void Main()
{
Info me = new Info();
me.SayFact();
}
}
💤
beep boop beep boop **code malfunction**
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.