Logo

Programming-Idioms

History of Idiom 45 > diff from v26 to v27

Edit summary for version 27 by :
New Lua implementation by user [jparoz]

Version 26

2015-11-30, 12:37:29

Version 27

2016-02-16, 16:03:35

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Code
local start = os.clock()
while os.clock() - start < 5 do end