class, module, coroutine, begining error

+ some correction and addition.
This commit is contained in:
2023-01-16 00:47:06 +01:00
parent 655ce78eee
commit 74b02df3c1
3 changed files with 317 additions and 14 deletions

View File

@@ -1,3 +1,8 @@
-- ============================================================================
-- Let's study the different loops offered by the Lua language.
-- ============================================================================
-- Jeb while loop
local jebSum = 0
print('jeb : '..jebSum)
@@ -38,4 +43,7 @@ while true do
print('Breaking out in')
if true then break end
end
print('Breaking out -> Done')
print('Breaking out -> Done')
-- ============================================================================
-- Thanks for reading!