rename (picrin number) to (picrin math)
This commit is contained in:
parent
d66ae479cc
commit
fcb6b1ead8
|
@ -144,7 +144,7 @@ pic_number_sqrt(pic_state *pic)
|
|||
void
|
||||
pic_init_math(pic_state *pic)
|
||||
{
|
||||
pic_deflibrary (pic, "(picrin number)") {
|
||||
pic_deflibrary (pic, "(picrin math)") {
|
||||
pic_defun(pic, "finite?", pic_number_finite_p);
|
||||
pic_defun(pic, "infinite?", pic_number_infinite_p);
|
||||
pic_defun(pic, "nan?", pic_number_nan_p);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
(define-library (scheme base)
|
||||
(import (picrin base)
|
||||
(only (picrin number) sqrt)
|
||||
(only (picrin math) sqrt)
|
||||
(picrin macro)
|
||||
(picrin string)
|
||||
(scheme file))
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
(define-library (scheme inexact)
|
||||
(import (picrin base)
|
||||
(picrin number))
|
||||
(picrin math))
|
||||
|
||||
(export acos
|
||||
asin
|
||||
|
|
Loading…
Reference in New Issue