# Control structure - `Use` While working with inside a template, it might be needed that you reference some other namespaces. The use clause works exaclty like PHP's vanilla top of the page `use`. **[PICEA]** So, using this code: ```html {% use AnyVendor\My\Super\Randomizer %} {# One chance out of ten to end this loop %} {% while Randomizer::run(1, 10) === 10 %} {% if Randomizer::run(1, 100) < 50 %} Lower than 50 ! {% else %} Greater than 50 ! {% endif %} {% endwhile %}