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