15 lines
249 B
Text
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.
|