Hello,
is there any chance to do it in a fashion way?

Code:
		for (int i=5; i >= 0; i--) {
			System.out.prinln( space*i + "Hello world!");
		}
I want get this:
Code:
     Hello world!
   Hello world!
  Hello world!
 Hello world!
Hello world!
thanks