Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languageyaml
pipeline:  
  - log:  
      message: "The current date is: #${@date.now()}"  

Output:

Code Block
"The current date is: 24.07.2023, 16:11:33"

Examples for @list

Code Block
languageyaml
vars:
  cities: "Munich, Bratislava, New York"
pipeline:
  - log: 
      message: "#${@list.size(vars.cities)}"

Output:

Code Block
3

Examples for @text

Code Block
languageyaml
pipeline:
  - log: 
      message: "#${@text.lang('Hallo, Herr Meier!')}"

Output:

Code Block
GERMAN

Auto-completion

...