mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
4 lines
125 B
Scheme
4 lines
125 B
Scheme
(define-library (euler totient)
|
|
(export totient)
|
|
(import (scheme base) (scheme inexact))
|
|
(include "totient-impl.scm"))
|