This commit is contained in:
Ninja-Jambon 2024-02-20 20:19:03 +01:00
parent 56e0195600
commit 4f59633394
4 changed files with 74 additions and 0 deletions

9
AppLaser.java Normal file
View file

@ -0,0 +1,9 @@
public class AppLaser {
public static void main(String [] args) {
Universe universe = new Universe(12, 12);
universe.print();
}
}