I'm using 3.0.4 (win32), could any one try it on a later version of the
compiler?
The code i'm compiling looks like this:
--
{$mode delphi}
type
Ttest = class(TObject)
public
Value: string;
end;
function Custom: extended;
begin
Result := 0;
end;
begin
// writeln( TTest
Hi,
When I am compiling to ELF64, the linker is located the .text section at
the address 4MB and the .data at address 6MB. Is there any way to reduce
this 2MB gap between those sections?
Matias
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
In our previous episode, Ryan Joseph said:
> >
> > I think it is important to differentiate between a language feature
> > and its common implementation. Perhaps case statements with variables
> > make sense? Of course, that doesn't mean anyone is going to add them.
>
> I?ve been programming Pasc
> On Oct 29, 2018, at 5:24 PM, R0b0t1 wrote:
>
> I think it is important to differentiate between a language feature
> and its common implementation. Perhaps case statements with variables
> make sense? Of course, that doesn't mean anyone is going to add them.
I’ve been programming Pascal sinc
On 29/10/2018 11:24, R0b0t1 wrote:
I think it is important to differentiate between a language feature
and its common implementation. Perhaps case statements with variables
make sense? Of course, that doesn't mean anyone is going to add them.
"case" also includes a compile time check, that case
On Mon, Oct 29, 2018 at 11:20 AM Michael Van Canneyt
wrote:
>
> > I tried today to make a case that used variables instead of constants and
> > was surprised to get an error. I’m sure this been true since the 80’s but
> > why don’t cases allow variables??? I thought a case statement was just a
> >
> I tried today to make a case that used variables instead of constants and
> was surprised to get an error. I’m sure this been true since the 80’s but
> why don’t cases allow variables??? I thought a case statement was just a
> group of if..else blocks in succession.
Case has never allowed variab
Ryan Joseph schrieb am Mo., 29. Okt. 2018,
10:41:
> I tried today to make a case that used variables instead of constants and
> was surprised to get an error. I’m sure this been true since the 80’s but
> why don’t cases allow variables??? I thought a case statement was just a
> group of if..else
I tried today to make a case that used variables instead of constants and was
surprised to get an error. I’m sure this been true since the 80’s but why don’t
cases allow variables??? I thought a case statement was just a group of
if..else blocks in succession.
Regards,
Ryan Joseph