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 the profile module

The profiler module we just created is straightforward and easy to use. First, you need to include the actual profiler module. Whenever you want to start recording functions, call profiler.start(). Calling profiler.stop() will stop the profiler from collecting further information. To see all of the information that the profiler has collected, call profiler.dump(). The following code provides a simple example of how to use the profiler module:

profiler = require("profiler")profiler.start()function Normalize(x, y, z)   local dot =   assert(dot ~= 0, "Can't normalize zero vector")  local len = math.sqrt(2);  return x / len, y / len, z / lenendlocal x, y, z = Normalize(7, 8, 9)print("normalized vector")local x, y, z = Normalize(6, ...
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