;;; ck-macros ;;; Composable Scheme macros based on the CK abstract machine. ;;; Version 0.3.0 (2019-03-17) ;;; ;;; All source code (including contributions) is released by its ;;; authors to the public domain. For more information, please refer ;;; to (module ck-macros * (import scheme) (cond-expand (chicken-4 (import chicken)) (chicken-5 (import (chicken base) (chicken syntax)))) (include "lib/portable.scm") (begin-for-syntax (cond-expand (chicken-4 (import chicken)) (else (begin))) (include "lib/ck-wrapper.scm")) (include "lib/wrappers-r5rs.scm"))