Initial stub

This commit is contained in:
Justin Ethier 2020-04-13 16:59:44 -04:00
parent fcf6b04e78
commit 1d9bb537a1

24
libs/cyclone/foreign.sld Normal file
View file

@ -0,0 +1,24 @@
;;;; Cyclone Scheme
;;;; https://github.com/justinethier/cyclone
;;;;
;;;; Copyright (c) 2014-2019, Justin Ethier
;;;; All rights reserved.
;;;;
;;;; TBD
;;;;
(define-library (cyclone foreign)
(import
(scheme base)
;(scheme write) ;; TODO: debugging only!
)
;(include-c-header "<ck_pr.h>")
(export
;; TODO
)
(begin
;; TODO: internal to compiler? Anything to define in this library??
;; internal name could be different (Cyc-foreign-code) to facilitate
;; library renaming, etc here
;(foreign-code STRING ...)
)
)