Error: Syntax Error

The following script will be get Syntax Error:
uses
  SysUtils;
MyCall();

The WebServer will like this:

I want to try

Error: Runtime Error

The following script will be get Runtime Error:
uses
  SysUtils;
var
  f: Cardinal;
f := 123.5 / 0;
print f;

The WebServer will like this:

I want to try

Description

The error text have 4 sections, Separator is "|":
1.Error occur time.
2.Error type and error message. Syntax error is occured in script compile, and Runtime error is in script running.
3.Error file name.
4.Error code line and the content. "Ln:10" is in the 10s line,and "Code:f := 123.5 / 0;" is the content of the error line.

Other

Is it easy? Yeah!!! It's so easy.