Answered by
5 years ago Edited 5 years ago
The simple answer is that the else
block will run if no other blocks ran and a elseif
block will be evaluated if the previous did not run.
Now some examples ........
using else
4 | print ( 'runs only if truthy' ) |
6 | print ( 'runs if the above did not run' ) |
using elseif
08 | print ( 'the above did not run. run must be falsy' ) |
10 | print ( 'you can chain as many as you want but only the first one that evaluate to true will run' ) |
12 | print ( 'none of the above ran' ) |
The above are just some testing setups you can run and turn the variable from true to false.
Also take a look at how Lua treats type as either true or false her
I hope this helps. Please comment if you have any other questions about this code.