mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Initial stub
This commit is contained in:
parent
fcf6b04e78
commit
1d9bb537a1
1 changed files with 24 additions and 0 deletions
24
libs/cyclone/foreign.sld
Normal file
24
libs/cyclone/foreign.sld
Normal 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 ...)
|
||||
)
|
||||
)
|
Loading…
Add table
Reference in a new issue