RosettaCodeData/Task/Here-document/Lambdatalk/here-document.lambdatalk
2023-07-01 13:44:08 -04:00

15 lines
249 B
Text

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.