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

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