Skip to Content
Lua Quick Start Guide
book

Lua Quick Start Guide

by Gabor Szauer
July 2018
Beginner
202 pages
5h 42m
English
Packt Publishing
Content preview from Lua Quick Start Guide

for loop

Lua has two flavors of the for loop, the numeric for and a generic for. The generic for is used to iterate over collections and will be covered in Chapter 3, Tables and Objects. For now, let's focus on the numeric for loop.

Syntactically, a numeric for loop consists of the for keyword, three expressions, and a do/end chunk. The three expressions are the initial expression, final expression, and step expression. Each expression is separated by a comma. The format for the loop looks like this:

for variable = initial_exp, final_exp, step_exp do  -- Chunkend

The result of the intial expression should be numeric; it will be assigned to a variable local to the for loop. The loop will increment or decrement this variable so long as it is ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning Lua Programming

Beginning Lua Programming

Kurt Jung, Aaron Brown
Vim Masterclass

Vim Masterclass

Jason Cannon

Publisher Resources

ISBN: 9781789343229Supplemental Content