Comparison of programming languages (strings): Difference between revisions

Content deleted Content added
Line 32:
=== Quoted raw ===
 
@"Hello, Worldworld!" ;; C#
r"Hello, Worldworld!" ;; Python
'Hello, Worldworld!' ;; Perl, Windows PowerShell
<nowiki><![CDATA[Hello, Worldworld!]]></nowiki> ;; XML ([[CDATA|CDATA section]])
 
=== Quoted interpolated ===
Line 48:
 
=== Multiple quoting ===
 
qq(I said "Hello, world!") ;; Perl
 
{{Expand-section|date=June 2008}}
 
=== Unique quoting variants ===
13HHello """Hello, Worldworld!""" ;; HollerithTriple quoting notation ;; FORTRANPython
13HHello, world! ;; Hollerith notation ;; FORTRAN
(indented with whitespace) ;; Indented with whitespace and newlines ;; YAML
 
[[Category:Programming language comparisons| ]]