public class Printer { void printString (){ String text = "Vive la Java!"; System.out.println(text); } }