Skip to content

Commit

Permalink
sfvxjf vcvsvvd cccdsв
Browse files Browse the repository at this point in the history
  • Loading branch information
FaisByan committed Nov 12, 2024
1 parent e0e72a4 commit cc21db2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/core/basesyntax/ColorSupplier.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ public String getRandomColor() {
Random random = new Random();
return COLORS[random.nextInt(COLORS.length)];
}

}
3 changes: 3 additions & 0 deletions src/main/java/core/basesyntax/Main.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package core.basesyntax;

public class Main {

public static void main(String[] args) {
FigureSupplier figureSupplier = new FigureSupplier();
Figure[] figures = new Figure[6];
Expand All @@ -16,5 +17,7 @@ public static void main(String[] args) {
for (Figure figure : figures) {
figure.draw();
}

}

}

0 comments on commit cc21db2

Please sign in to comment.