import java.util.ArrayList;
public class DatCodeMania {
private String name;
private int age;
private String occupation;
private ArrayList<String> programming_langs;
private ArrayList<String> human_langs;
public DatCodeMania() {
this.age = 15;
this.occupation = "High school student, pursuing Computer Science.";
this.programming_langs = new ArrayList<String>();
programming_langs.add("Python - Intermediate");
programming_langs.add("Java - Beginner-Intermediate");
programming_langs.add("Go - Beginner");
this.human_langs = new ArrayList<String>();
human_langs.add("English - fluent");
human_langs.add("Russian - fluent");
human_langs.add("German - fluent");
human_langs.add("Spanish - studying - intermediate");
human_langs.add("Mandarin - studying - beginner");
}
}
Pinned 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.