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

Using debugger.lua

Lets take a look at an example of using debugger.lua. Consider the following buggy code:

local debug = require("debugger")function BuggyAdditionFunction(x1, x2)  local sum = x1 * x2  debug()  return sumend
local add = BuggyAdditionFunction(2, 3)print(add)

Here, BuggyAdditionFunction multiplies the two arguments instead of adding them together. Notice the debug() command before the function returns. When this command is hit, control in the console will be given to the debugger. Type l and hit Enter to print the local variables. Doing so, it's easy to see that sum is wrong and needs to be fixed.

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