How To Check If Recently Viewed Has An Item

i need to do a check to know when recently viewed has an item.

Example:

{if $recently_viewed > 1} do something {/if}

Try

{if $smarty.session.recently_viewed_products}
    ....
{/if}

Try

{if $smarty.session.recently_viewed_products}
    ....
{/if}

Awesome, thanks a lot!!

You are welcome! :)