The Fore language specification requires the use of the specified keyword in the statement.
Check the statement format. Add the required keywords.
Sub UserProc;
Var
i: Integer;
Begin
Select Case i
End Select;
End Sub UserProc;
When the specified code is compiled, the following error is displayed: The "case" keyword is expected. The specified error occurs because the Select Case selection statement must contain at least one Case block.
See also: