Literals/String: Difference between revisions

Content deleted Content added
M4 (new lang entry...)
Line 300:
print "Hello\,\ world
print "|Hello, world|
 
=={{header|M4}}==
The quoting characters are <tt>`</tt> and <tt>'</tt>, but can be changed by the <code>changequote</code> macro:
<lang m4>`this is quoted string'</lang>
<lang m4>changequote(`[',`]')dnl
[this is a quoted string]</lang>
 
=={{header|Modula-3}}==