Here document: Difference between revisions

no edit summary
(→‎{{header|Haskell}}: link raw-strings-qq)
No edit summary
Line 933:
 
</pre>
 
=={{header|Lambdatalk}}==
Lambdatalk inverts the standard evaluation process, nothing is evaluated out of S-expressions {first rest}.
 
<lang scheme>
1) defining a variable:
{def myVar 123}
 
2) defining some text:
Here is some
multi-line string. And here is
the value of "myVar": '{myVar}
That's all.
 
3) displays :
 
Here is some
multi-line string. And here is
the value of "myVar": {myVar}
That's all.
</lang>
 
=={{header|langur}}==