11 lines
124 B
Text
11 lines
124 B
Text
set a = 15
|
|
set b = 21
|
|
if a > b
|
|
' a is bigger than b
|
|
else
|
|
if b > a
|
|
' b is bigger than a
|
|
else
|
|
' a is equal to b
|
|
end if
|
|
end if
|