---
title: "Do While Example 1"
canonical: "https://support.appfire.com/space/PSCONF/15305506/Do%20While%20Example%201"
format: markdown
---
> Macro (aura-html)

> Macro (excerpt)
> 
> ```
> number count = 1;
> do{
>     runnerLog(count);
>     count ++;
> }while(count <= 10);
> ```