DAM Assigment 1 Simple
DAM Assigment 1 Simple
using System;
class Program
{
static void Main()
{
Student student1 = new( "John", 20);
Student student = student1;
Person person = new Person(1, "Alice", 25);
student.Name = "Bob";
person.Age = 30;