RosettaCodeData/Task/Introspection/FreeBASIC/introspection-4.basic
2023-07-01 13:44:08 -04:00

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