package pl.codegym.task.task03.task0307; /* Witaj, StarCraft! */ import java.time.temporal.Temporal; public class Solution { public static void main(String[] args) { Zerg zerg = new Zerg(); zerg.imie = "barnaba"; Zerg zerg2 = new Zerg(); zerg2.imie = "barnaba1"; Zerg zerg3 = new Zerg(); zerg3.imie = "barnaba3"; Zerg zerg4 = new Zerg(); zerg4.imie = "barnaba4"; Protoss prottos = new Protoss(); prottos.imie = "Kubus"; Protoss prottos1 = new Protoss(); prottos.imie = "Kubus1"; Protoss protoss3 = new Protoss(); protoss3.imie = "Kubus3;"; Terranin teranin = new Terranin(); teranin.imie = "Karolcia"; Terranin teranin1 = new Terranin(); teranin1.imie = "Karolcia1"; Terranin terranin3 = new Terranin(); terranin3.imie = "Karolcia 3"; } public static class Zerg { public String imie; } public static class Protoss { public String imie; } public static class Terranin { public String imie;