public class IvanoDivano
{
public string fName;
public string lName;
public string occupation;
public int age;
public List<string> spokenLang;
public List<string> codingLang;
public IvanoDivano()
{
this.fName = "Ivan";
this.lName = "Tenga";
this.occupation = "Student"
this.age = 24
this.spokenLang = ["it_IT", "en_UK", "es_ES"];
this.codingLang = ["C" , "C++" , "C#" , "Java" , "OCaml" , "HTML" , "CSS" , "PHP"];
}
}
Popular repositories Loading
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.