Long strings============Option 1: Only have normal "" strings String s = ( "<html>\n" "<head>\n" )Option 2: Have prefixed-line stringsShould the line ending be hard-coded to always be "\n"?Line-based internet protocols (e.g. HTTP 1.x, SMTP) typically use "\r\n". String s = ( |<html> |<head> )