public class Multiline { public static void main(String[] args) { String greet = """ Yo thar! This is a multiline string. The ideas has been successfully cribbed from the Slytherins at Python"""; System.out.println(greet); } }