dev/CSHARP/Program.cs
2026-05-12 21:45:18 +05:00

10 lines
156 B
C#

struct Person
{
public string name;
public int age;
public void Print()
{
Console.WriteLine($"Name: {name} Age: {age}");
}
}