<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, Jan 19, 2015 at 11:02 AM, leledumbo <span dir="ltr"><<a href="mailto:leledumbo_cool@yahoo.co.id" target="_blank">leledumbo_cool@yahoo.co.id</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span class="">
<br>
</span><a href="http://www.freepascal.org/docs-html/ref/refsu7.html" target="_blank">http://www.freepascal.org/docs-html/ref/refsu7.html</a><br></blockquote><div> </div></div>The beginning of the section. Shame on me. <br>"The compiler
is rather sloppy about the characters it allows after the caret, but in general one should assume
only letters"<br><br></div><div class="gmail_extra">Looking at scanner.pas, characters are interpreted as following:<br> '^' :<br> begin<br> readchar;<br> c:=upcase(c);<br> if c<#64 then<br> c:=chr(ord(c)+64)<br> else<br> c:=chr(ord(c)-64);<br> ...<br><br></div><div class="gmail_extra">thanks,<br>Dmitry<br></div><div class="gmail_extra"><br><br></div><div class="gmail_extra"><br></div><div class="gmail_extra"><br></div><div class="gmail_extra"><br></div></div>