/* Example of recursion. What is the output of the following program? Laura Toma csci107 */ public class RecPrint { public static void main (String args[]) { printHello(); } // end of main public static void printHello() { System.out.println("Hello World!"); printHello(); } } // end of class