OPTION STRICT forces the user to declare any variable used in the program. For example, if you use OPTION STRICT and then use A=2, it will give an error. To fix this problem, you replace A=2 with VAR A=2 to declare the variable. OPTION STRICT is often used in complex programs, with all the variables being declared at the beginning of the program. Strings will also be affected by OPTION STRICT.