On Mon, Jan 19, 2015 at 11:02 AM, leledumbo <leledumbo_c...@yahoo.co.id>
wrote:

>
> http://www.freepascal.org/docs-html/ref/refsu7.html
>

The beginning of the section. Shame on me.
"The compiler is rather sloppy about the characters it allows after the
caret, but in general one should assume only letters"

Looking at scanner.pas, characters are interpreted as following:
 '^' :
 begin
   readchar;
   c:=upcase(c);
   if c<#64 then
     c:=chr(ord(c)+64)
   else
     c:=chr(ord(c)-64);
  ...

thanks,
Dmitry
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Reply via email to