9 lines
137 B
Text
9 lines
137 B
Text
|
|
Func Compare a,b
|
||
|
|
if a < b
|
||
|
|
See "A is less than B"
|
||
|
|
but a > b
|
||
|
|
See "A is more than B"
|
||
|
|
else
|
||
|
|
See "A equals B"
|
||
|
|
ok
|