On Saturday 14 December 2002 18:27, Armin Roehrl wrote:
> Hi all,
>
> =09I am new to ecl and don't see the obvious.
>
> Could s.b. email me a 3-line snipplet of how to use the
> multiprecision library?
> S.th. like adding two numbers should be enough to
> get me going.
Ummm, something like this?
ECL (Embeddable Common-Lisp) 0.8
Copyright (C) 1984 Taiichi Yuasa and Masami Hagiya
Copyright (C) 1993 Giuseppe Attardi
Copyright (C) 2000 Juan J. Garcia-Ripoll
ECL is free software, and you are welcome to redistribute it
under certain conditions; see file 'Copyright' for details.
Type :h for Help. Top level.
> (+ 1231231243585954454 123234498450452412)
1354465742036406866
The three numbers which are presented here exceed the size of integers fo=
r a=20
32-bit architecture, and they are, therefore, implemented using the GMP=20
library. However, the user needs not know this: you just work with intege=
r=20
numbers and ECL decides whether to manipulate them as GMP integers or not=
=2E
Juanjo
|