mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-27 22:15:06 +02:00
20 lines
422 B
Scheme
20 lines
422 B
Scheme
;;;; Cyclone Scheme
|
|
;;;; https://github.com/justinethier/cyclone
|
|
;;;;
|
|
;;;; Copyright (c) 2014-2016, Justin Ethier
|
|
;;;; All rights reserved.
|
|
;;;;
|
|
;;;; This module contains code to deal with macros.
|
|
;;;;
|
|
(define-library (scheme cyclone macros)
|
|
(import (scheme base)
|
|
;(scheme write) ;; Debug only
|
|
(scheme eval)
|
|
(scheme cyclone util)
|
|
)
|
|
(export
|
|
)
|
|
(inline
|
|
macro:macro?)
|
|
(begin
|
|
))
|