12 lines
264 B
Text
12 lines
264 B
Text
#Undef Abs '' undefine Abs keyword
|
|
'Dim bloop As Integer = -15 '' bloop declaration commented out
|
|
#IfDef bloop
|
|
#IfDef Abs
|
|
Print "Abs(bloop) = "; Abs(bloop)
|
|
#Else
|
|
Print "Abs is not available"
|
|
#EndIf
|
|
#Else
|
|
Print "bloop does not exist"
|
|
#EndIf
|
|
Sleep
|