Re: [fpc-pascal] Re: fpc-pascal Digest, Vol 72, Issue 35

2010-06-14 Thread Michael Van Canneyt
On Mon, 14 Jun 2010, Roger Bailey wrote: On 12 Jun 2010, at 11:00, Michael Van Canneyt wrote: TestFunction := ActualParameter ( ) ; { compiles and runs o.k. } [MVC:] The addition of () actually calls the function. TestFunction := ActualParameter ; { gives "incompatible type" er

[fpc-pascal] Re: fpc-pascal Digest, Vol 72, Issue 35

2010-06-14 Thread Roger Bailey
On 12 Jun 2010, at 11:00, Michael Van Canneyt wrote: >>> TestFunction := ActualParameter ( ) ; { compiles and runs o.k. } >>> >> > [MVC:] The addition of () actually calls the function. > >>> TestFunction := ActualParameter ; { gives "incompatible type" error, >>> but ... } > > [MVC:]