Error: "Declaration expected but identifier 'SysUtils' found"

Error: "Declaration expected but identifier 'SysUtils' found"

我在尝试使用多个标识符 Delphi 7 接收错误

uses
   Math;
   SysUtils;

但是我收到了上面的错误。

任何帮助都会很棒。

应该是:

uses
      Math,
      SysUtils;

分号 (;) 是语句结束字符,逗号 (,) 分隔项目。