ST 에디터에서 조건부 컴파일을 위한 이 명령을 사용합니다.
#IF IsSystemVariableSupported('sys_bIsPlcInTestMode') <> 0 #THEN
(*condition TRUE: first part is compiled and executed*)
#ELSE
(*condition FALSE: second part is compiled and executed*)
OutputCompilerWarning('PLC does not support the test mode');
#END_IF;
S PLC가 있는 이 코드는 다음 경고를 반환합니다.