Splat a bunch of modules from elsewhere.

This commit is contained in:
David Thompson 2024-05-17 17:49:43 -04:00
parent 7d728559d0
commit 1b950264d1
11 changed files with 3861 additions and 376 deletions

View file

@ -18,21 +18,6 @@
;;;
;;; Code:
;; (library (math)
;; (export random
;; clamp)
;; (import (scheme base)
;; (hoot ffi))
;; (define-foreign random
;; "math" "random"
;; -> f64)
;; (define (clamp x min max)
;; (cond ((< x min) min)
;; ((> x max) max)
;; (else x))))
(define-module (math)
#:pure
#:use-module (scheme base)