According to FPL:
Does GPC support a feature kindwise those of C compiler that is to define the content of something while you declare it?
GPC supports all of the following:
Var i: Integer value 0; (* ISO-10206 Extended Pascal *) j: Integer := 0; (* VAX Pascal *) k: Integer = 0; (* GPC special *)
Const l: Integer = 0; (* For BP compatibility, this is in fact a variable. *) (* If you write to it, you get a warning except in *) (* `--borland-pascal' mode. *)
Greetings,
Peter