HereDOC special



HereDOC special
Smart pascal source code
var v := #'hello "world" !'; WriteLn(v); v := # " hello 'again' ! "; WriteLn(v); WriteLn(#' first form '' single '' " " double " "with quotes '); WriteLn(# " second form '' single '' " " double " "with quotes "); {<<< RESULT - CONSOLE LOG >>> ----------------------------- hello "world" ! hello 'again' ! first form 'single' ""double"" with quotes second form ''single'' "double" with quotes ----------------------------- {<<<<<<<<< THE END >>>>>>>>>}