-
Notifications
You must be signed in to change notification settings - Fork 0
/
control_flow.lua
73 lines (61 loc) · 1.22 KB
/
control_flow.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
--- Generated by EmmyLua(https://github.com/EmmyLua)
--- Created by chuckchen.
---
--- if 控制流
--[[
if(布尔表达式)
then
--[ 在布尔表达式为 true 时执行的语句 --]
end
--]]
if (0)
then
print("0 is true")
end
--- if...else 控制流
--[[
if(布尔表达式)
then
--[ 布尔表达式为 true 时执行该语句块 --]
else
--[ 布尔表达式为 false 时执行该语句块 --]
end
--]]
function max(x, y)
if x > y
then
return x
else
return y
end
end
print(max(1, 2))
--- if ... else if ... else 控制流
--[[
if( 布尔表达式 1)
then
--[ 在布尔表达式 1 为 true 时执行该语句块 --]
elseif( 布尔表达式 2)
then
--[ 在布尔表达式 2 为 true 时执行该语句块 --]
elseif( 布尔表达式 3)
then
--[ 在布尔表达式 3 为 true 时执行该语句块 --]
else
--[ 如果以上布尔表达式都不为 true 则执行该语句块 --]
end
--]]
function color(s)
if s == "red"
then
print("red")
elseif s == "yellow"
then
print("yellow")
else
print("green")
end
end
print(color("red"))
print(color("unknown"))