+ 1
Make a rotation animation using -,/,\ and |
I am looking for a script that creates a rotation animation using character /,-, | and\. If you continuously switch between these characters it should look like its rotating. How to make this?
2 Réponses
0
Use System.out.println("/");
System.out.println("\r"); //Backspace
System.out.println("-");
//etc
0
I think that with SoloLearn, you can't do that. Maybe if you can find on Internet how to overwrite in the console (I know you can with python, so it must exist in Java).