Re: [Chicken-users] currency-converter.egg

2007-10-11 Thread felix winkelmann
On 10/9/07, Jean-Philippe Théberge <[EMAIL PROTECTED]> wrote: > In my process of learning "the chicken way" I have made an egg out of a > simple but useful currency converter. > > [procedure] (currency-convert FROM TO AMOUNT #:table #:format?) > > (currency-convert 'USD 'EUR 45.34) > => "32.03" > (

[Chicken-users] currency-converter.egg

2007-10-09 Thread Jean-Philippe Théberge
In my process of learning "the chicken way" I have made an egg out of a simple but useful currency converter. [procedure] (currency-convert FROM TO AMOUNT #:table #:format?) (currency-convert 'USD 'EUR 45.34) => "32.03" (currency-convert 'USD 'EUR 45.34 #:format? #f) => 32.3003490774382 (currency