PROGRAM.scm 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ;;; PROGRAM --- Does something
  2. ;; Copyright (C) 2002, 2006 Free Software Foundation, Inc.
  3. ;;
  4. ;; This program is free software; you can redistribute it and/or
  5. ;; modify it under the terms of the GNU Lesser General Public License
  6. ;; as published by the Free Software Foundation; either version 3, or
  7. ;; (at your option) any later version.
  8. ;;
  9. ;; This program is distributed in the hope that it will be useful,
  10. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. ;; Lesser General Public License for more details.
  13. ;;
  14. ;; You should have received a copy of the GNU Lesser General Public
  15. ;; License along with this software; see the file COPYING.LESSER. If
  16. ;; not, write to the Free Software Foundation, Inc., 51 Franklin
  17. ;; Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. ;;; Author: J.R.Hacker
  19. ;;; Commentary:
  20. ;; Usage: PROGRAM [ARGS]
  21. ;;
  22. ;; PROGRAM does something.
  23. ;;
  24. ;; TODO: Write it!
  25. ;;; Code:
  26. (define-module (scripts PROGRAM)
  27. :export (PROGRAM))
  28. (define (PROGRAM . args)
  29. #t)
  30. (define main PROGRAM)
  31. ;;; PROGRAM ends here