public class Rekursion1 { static int i = 0; public static void main(String[] args) { System.out.println("Test."); if(i++ == 0) main(args); } }