Added stubs

This commit is contained in:
Justin Ethier 2015-06-03 01:21:22 -04:00
parent 7d7e77df3d
commit 65d53c0b6b

View file

@ -41,6 +41,7 @@
make-string
vector
vector->list
vector->string
error
raise
raise-continuable
@ -161,6 +162,12 @@
(loop (+ i 1)
(cons (vector-ref vec i) lst))))))
(loop start '())))
(define (vector->string vec . opts)
TODO
)
(define (string->vector str . opts)
TODO
)
(define (boolean=? b1 b2 . bs)
(Cyc-obj=? boolean? b1 (cons b2 bs)))