Re: [fpc-pascal] package keyword

2010-07-26 Thread Graeme Geldenhuys
On 26 July 2010 23:37, Martin wrote: > Hm, this may be one silly question... > > but I couldn't find docs on it, I hadn't come accross it before... > > A file that should compile can start with: > 'unit xxx;' > 'program xxx' ...and there is 'library xxx' too -- Regards,   - Graeme - ___

Re: [fpc-pascal] package keyword

2010-07-26 Thread Marco van de Voort
In our previous episode, Martin said: > Hm, this may be one silly question... > > but I couldn't find docs on it, I hadn't come accross it before... > > A file that should compile can start with: > 'unit xxx;' > 'program xxx' > > but I found fpc also compiles > 'package xxx; ' > > What dos it d

[fpc-pascal] package keyword

2010-07-26 Thread Martin
Hm, this may be one silly question... but I couldn't find docs on it, I hadn't come accross it before... A file that should compile can start with: 'unit xxx;' 'program xxx' but I found fpc also compiles 'package xxx; ' What dos it do? Where are the docs? __