This commit is contained in:
Astatin3
2024-03-26 14:07:09 -06:00
parent f8d9da826c
commit f8d5729e52
24 changed files with 4318 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
public class main {
public static void main(String[] args) {
regularDonut d = new regularDonut();
d.setZoom(2);
d.setThickness(40);
while(true){
System.out.print(d);
}
}
}