> "abc"; > print("abc: "); > print("def\n"); > print("xyz"); > print("\n\n"); > print("This is a message before the value 1, with 1 on the same line: "); > 1; > print("This is a message before the value 1, with 1 on the next line:\n"); > 1; > print("This is a message before the value 1, with 1 on the next line, indented:\n "); > 1; > println("This is a message before the value 1, with 1 on the next line:"); > 1;