RosettaCodeData/Task/Conditional-structures/PureBasic/conditional-structures-3.basic

6 lines
185 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
CompilerIf #PB_Compiler_OS = #PB_OS_Linux And #PB_Compiler_Processor = #PB_Processor_x86
Debug "Compiled on x86 Linux"
CompilerElse
Debug "Compiled on something else"
CompilerEndIf