squee.scm 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ;; -*- mode: scheme; coding: utf-8 -*-
  2. ;;;;
  3. ;;;; Copyright (C) 2015
  4. ;;;; David Pirotte <david at altosw dot be>
  5. ;;;; This file is part of Guile-Squee.
  6. ;;;; Guile-Squee is free software: you can redistribute it and/or modify
  7. ;;;; it under the terms of the GNU Lesser General Public License as
  8. ;;;; published by the Free Software Foundation, either version 3 of the
  9. ;;;; License, or (at your option) any later version.
  10. ;;;; Guile-Squee is distributed in the hope that it will be useful
  11. ;;;; WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. ;;;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
  13. ;;;; Public License for more details.
  14. ;;;; You should have received a copy of the GNU Lesser General Public
  15. ;;;; License along with Guile-Squee. If not, see
  16. ;;;; <http://www.gnu.org/licenses/>.
  17. ;;;;
  18. ;;; Commentary:
  19. ;;; Code:
  20. (define-module (squee)
  21. #:use-module (squee reexport)
  22. #:use-module (squee enum)
  23. #:use-module (squee squee))
  24. (eval-when (expand load eval)
  25. (re-export-public-interface (squee enum)
  26. (squee squee)))