RosettaCodeData/Task/Here-document/J/here-document-2.j
2023-07-01 13:44:08 -04:00

11 lines
268 B
Text

package rosettacode.heredoc;
public class MainApp {
public static void main(String[] args) {
String hereDoc = """
This is a multiline string.
It includes all of this text,
but on separate lines in the code.
""";
System.out.println(hereDoc);
}
}