RosettaCodeData/Task/Introspection/FreeBASIC/introspection-3.basic

13 lines
227 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#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