Checks if a variable is a keyword (for example, Default).
IsKeyword ( variable )
| variable | The variable to check. |
| Success: | Returns 1 if variable is a keyword. |
| Failure: | Returns 0 if variable is not a keyword. |
Local $a = Default
If IsKeyword($a) Then MsgBox(0, "Ok", "Yes it is")