dbt - Jinja in dbt
What will be the output of the following dbt Jinja code?
{% set sum = 1 %}
{% for num in range(1, 4) %}
{% set sum = sum * num %}
{% endfor %}
{{ sum }}