mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
6 lines
201 B
Scheme
6 lines
201 B
Scheme
;;> Utility to determine the length of the hypotenuse of a right
|
|
;;> triangle given the other two sides.
|
|
|
|
(define-library (pythagoras hypotenuse)
|
|
(export hypotenuse)
|
|
(include-shared "hypotenuse"))
|