syn-param.scm 676 B

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