Quote:
Originally posted by GreenDice
Greg,
Could you give some examples on how to use labels?
Thanks.
|
Sure. Sorry for the oversight.
Code:
AppleTest: {$if X = Apple}
debug "X is an apple", cr
OrangeTest: {$elseif X = Orange}
debug "X is an orange", cr
MangoTest: {$elseif X = Mango}
debug "X is an mango", cr
NoneOfTheAbove: {$else}
debug "X must be a banana", cr
EndFruitTest: {$endif}