Re: [fpc-pascal] Free Pascal Language Diagram

2018-09-11 Thread Michael Van Canneyt
On Tue, 11 Sep 2018, Anthony Walter wrote: I posted this link once before, but I thought I'd remind you guys it exists and ask if anyone would like to take the work from the page, and integrate it into either the official documentation or maintain it somewhere on the free pascal website.

Re: [fpc-pascal] Free Pascal Language Diagram

2018-09-11 Thread R0b0t1
Noice. I'd been wanting to collect all of the ones from the docs into a more coherent representation of the syntax. On Tue, Sep 11, 2018 at 1:49 PM, Anthony Walter wrote: > I posted this link once before, but I thought I'd remind you guys it > exists and ask if anyone would like to take the

[fpc-pascal] Free Pascal Language Diagram

2018-09-11 Thread Anthony Walter
I posted this link once before, but I thought I'd remind you guys it exists and ask if anyone would like to take the work from the page, and integrate it into either the official documentation or maintain it somewhere on the free pascal website. https://www.getlazarus.org/learn/language/lexical/

Re: [fpc-pascal] Hint converting to int64

2018-09-11 Thread Mark Morgan Lloyd
On 11/09/18 16:15, Santiago A. wrote: El 11/09/18 a las 12:30, Mark Morgan Lloyd escribió:> On 11/09/18 10:15, Santiago A. wrote:>> Hello:FPC: 3.0.4 (Realease from Lazarus 1.8.4 SVN: 57972)OS: Windows7 >> 32bits / Linux 64Bits>> I have this code and I get a hint>> -- var  

Re: [fpc-pascal] Hint converting to int64

2018-09-11 Thread Santiago A.
El 11/09/18 a las 12:30, Mark Morgan Lloyd escribió: On 11/09/18 10:15, Santiago A. wrote: Hello:FPC: 3.0.4 (Realease from Lazarus 1.8.4 SVN: 57972)OS: Windows7 32bits / Linux 64Bits I have this code and I get a hint -- var  Entity:Longword;FullParagraph:string; pIni:Integer; begin

Re: [fpc-pascal] Hint converting to int64

2018-09-11 Thread Mark Morgan Lloyd
On 11/09/18 10:15, Santiago A. wrote: Hello:FPC: 3.0.4 (Realease from Lazarus 1.8.4 SVN: 57972)OS: Windows7 32bits / Linux 64Bits I have this code and I get a hint -- var  Entity:Longword;FullParagraph:string; pIni:Integer; begin Entity:=Entity*10+ord(FullParagraph[pIni])-48; //

[fpc-pascal] Hint converting to int64

2018-09-11 Thread Santiago A.
Hello: FPC: 3.0.4 (Realease from Lazarus 1.8.4 SVN: 57972) OS: Windows7 32bits / Linux 64Bits I have this code and I get a hint -- var  Entity:Longword;FullParagraph:string; pIni:Integer; begin Entity:=Entity*10+ord(FullParagraph[pIni])-48; // <=== Hint end; ---