12345678910111213141516171819202122232425 |
- ;;; syn-param.sls --- Operators with Extended Parameter Syntax
- ;; Copyright (C) 2010 Andreas Rottmann <a.rottmann@gmx.at>
- ;; This program is free software, you can redistribute it and/or
- ;; modify it under the terms of the MIT/X11 license.
- ;; You should have received a copy of the MIT/X11 license along with
- ;; this program. If not, see
- ;; <http://www.opensource.org/licenses/mit-license.php>.
- ;;; Commentary:
- ;;; Code:
- #!r6rs
- (library (arguile lib syn-param)
- (export
- with-extended-parameter-operators
- with-extended-parameter-operators*)
- (import (rnrs)
- (arguile lib private include))
- (include-file ((arguile lib syn-param private) syn-param)))
|