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

Infinite loops

One of the dangers of loops is an infinite loop. You get into an infinite loop when the condition of the loop never evaluates to false. Because the condition keeps being true, the loop goes on forever. The following code snippet demonstrates a simple infinite loop:

while true do    print ("forever")end

A more real-life example of an infinite loop would look like this:

x = 10 -- Initialize a "control" variablewhile x > 0 do -- Boolean condition: x > 0    print ("hello, world")    x = x + 1 -- Decrement the "control" variableend

This loop will run forever, since the value of x keeps increasing and will never reach 0.

If you encounter an infinite loop, force stop the execution of the program in any terminal with the keyboard shortcut ...
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