echo
{% set name = 'John' %}
{% echo name %}
John
{% set price = 100 %}
{% set discount = 20 %}
{% echo price - discount %}
80
{% set text = 'Hello World' %}
{% echo text | upcase %}
HELLO WORLD
{% set name = 'John' %}
{% echo name %}
John
{% set price = 100 %}
{% set discount = 20 %}
{% echo price - discount %}
80
{% set text = 'Hello World' %}
{% echo text | upcase %}
HELLO WORLD