option explicit

Prevent the automatic creation of variables.

Syntax:
option explicit

sdlBasic will create things for you without them having to be explicitly declared. For example, the statement:
a = 100
will automatically create the variable a if one does not exist. You can prevent the automatic creation of variables with the statement:
option explicit