mirror of
https://github.com/Astatin3/Code.org-Final-Projects.git
synced 2026-06-08 16:08:02 -06:00
14 lines
223 B
Java
14 lines
223 B
Java
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);
|
|
}
|
|
|
|
}
|
|
} |