axiom-developer
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Axiom-developer] Re: Aldor and Axiom


From: Ralf Hemmecke
Subject: Re: [Axiom-developer] Re: Aldor and Axiom
Date: Wed, 15 Feb 2006 11:33:12 +0100
User-agent: Thunderbird 1.5 (X11/20051201)

On 02/14/2006 09:38 PM, C Y wrote:
OK. Here's a link for the lazy (me in a few hours ;-) : http://www.aldor.org/docs/HTML/chap21.html

Be careful, the code there will probably not work.
print: TextWriter
<<: (TextWriter, SOMETYPE) -> TextWriter

Unfortunately, "print" is not in libaldor but in the old axllib. You should instead say

  import from TextWriter;
  stdout << "SOME Object";

SingleInteger is MachineInteger in libaldor.

There is no BasicType anymore. I think the closest would be

define BasicType: Category == with {
        PrimitiveType;
        OutputType;
        HashType;
}

The signature
  sample: %
has been removed, since it is not always easy to provide an element at creation time of the domain.

Ralf




reply via email to

[Prev in Thread] Current Thread [Next in Thread]