mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Added exports, include call/cc in export list
This commit is contained in:
parent
1ab87e6f9b
commit
b03d1461f8
1 changed files with 46 additions and 0 deletions
|
@ -1,5 +1,51 @@
|
||||||
(define-library (scheme base)
|
(define-library (scheme base)
|
||||||
(export
|
(export
|
||||||
|
*Cyc-version-banner*
|
||||||
|
call-with-current-continuation
|
||||||
|
call/cc
|
||||||
|
;(Cyc-bin-op cmp x lst)
|
||||||
|
;(Cyc-bin-op-char cmp c cs)
|
||||||
|
char=?
|
||||||
|
char<?
|
||||||
|
char>?
|
||||||
|
char<=?
|
||||||
|
char>=?
|
||||||
|
char-upcase
|
||||||
|
char-downcase
|
||||||
|
char-alphabetic?
|
||||||
|
char-upper-case?
|
||||||
|
char-lower-case?
|
||||||
|
char-numeric?
|
||||||
|
char-whitespace?
|
||||||
|
digit-value
|
||||||
|
foldl
|
||||||
|
foldr
|
||||||
|
not
|
||||||
|
list?
|
||||||
|
zero?
|
||||||
|
positive?
|
||||||
|
negative?
|
||||||
|
append
|
||||||
|
list
|
||||||
|
make-list
|
||||||
|
list-copy
|
||||||
|
map
|
||||||
|
for-each
|
||||||
|
list-tail
|
||||||
|
list-ref
|
||||||
|
list-set!
|
||||||
|
reverse
|
||||||
|
boolean=?
|
||||||
|
symbol=?
|
||||||
|
Cyc-obj=?
|
||||||
|
make-string
|
||||||
|
error
|
||||||
|
raise
|
||||||
|
raise-continuable
|
||||||
|
with-exception-handler
|
||||||
|
*exception-handler-stack*
|
||||||
|
Cyc-add-exception-handler
|
||||||
|
Cyc-remove-exception-handler
|
||||||
)
|
)
|
||||||
(include "cyclone.scm")
|
(include "cyclone.scm")
|
||||||
(begin
|
(begin
|
||||||
|
|
Loading…
Add table
Reference in a new issue