Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeEclipse
languagejava
titlePersonMain.java
public class Main {

    List<Person> persons = new ArrayList<Person>();

    public void init() {
        persons = new ArrayList<Person>();
		
		persons.add(new Person("Ola", 10, 'M'));
        persons.add(new Person("Kari", 12, 'F'));
        persons.add(new Person("Per", 22, 'M'));
        persons.add(new Person("Pål", 17, 'M'));
        persons.add(new Person("Espen", 19, 'M'));
    }

    public void run() {
    }

    public static void main(String[] args) {
        Main main = new Main();
		main.init();
        main.run();
    }

...