/* A student asked about how to split up a System.out.println() statement into two lines. */ public class LineWrap { public static void main(String[] args) { System.out.println("This is a line that is very, very, very, very, very, very, very, " + "very long so I split it up into two lines."); } }