using System;
using System.Collections.Generic;
class Person : Developer {
public string name = "Elias Steininger";
public int age = ;
public string location = "Österreich";
public int yearsOfExperience = ;
public List<string> languages = new List<string>
{"HTML", "JavaScript", "Python", "C#", "GdScript"};
public List<string> interessen = new List<string>
{"KI", "spiele/software entwicklung", "open source"};
public void codeProject(){
Console.WriteLine("Schreibe sauberen code...");
}
}