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

> Macro (excerpt)
> 
> ```
> for(int x = 1; x <= 10; x+=1) {
>     runnerLog(x);
> }
> ```
> 
> > ℹ️ Use this method when you are not looping through an array of values but some finite number.