mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
9 lines
161 B
Text
9 lines
161 B
Text
|
{% set hello_world="hello world" %}
|
||
|
{% for i in [1, 2, 3] %}
|
||
|
{% if loop.first %}
|
||
|
{{hello_world}}
|
||
|
{% else %}
|
||
|
{{hello_world}}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|