RosettaCodeData/Task/Here-document/Lambdatalk/here-document.lambdatalk

16 lines
249 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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": 123
That's all.