Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
4
Task/Variables/Lua/variables-1.lua
Normal file
4
Task/Variables/Lua/variables-1.lua
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
a = 1 -- Here we declare a numeric variable
|
||||
fruit = "banana" -- Here we declare a string datatype
|
||||
needspeeling = True -- This is a boolean
|
||||
local b = 2 -- This variable declaration is prefixed with a scope modifier
|
||||
1
Task/Variables/Lua/variables-2.lua
Normal file
1
Task/Variables/Lua/variables-2.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
A, B, C, D, E = 2, 4, 6, 8, "It's never too late"
|
||||
Loading…
Add table
Add a link
Reference in a new issue