Italiano 

Gianni Ciolli's web pages

url: http://web.math.unifi.it/users/ciolli/scheme.en.html | Home page


The Scheme language

Scheme is a programming language born in 1975.

Links

Other

As a quick demonstration, here we implement the Euclid algorithm to compute of the greatest common divisor of two given (positive) integers:

(define (euclide a b)
  (let ((r (modulo a b)))
    (if (zero? r)
        b
        (euclide b r))))

Valid XHTML 1.0! Valid CSS!

this website is managed with Eastweed